diff --git a/builder/azure/arm/step_publish_to_shared_image_gallery.go b/builder/azure/arm/step_publish_to_shared_image_gallery.go index f37e78d13..cfd270761 100644 --- a/builder/azure/arm/step_publish_to_shared_image_gallery.go +++ b/builder/azure/arm/step_publish_to_shared_image_gallery.go @@ -108,8 +108,6 @@ func (s *StepPublishToSharedImageGallery) Run(ctx context.Context, stateBag mult s.say(fmt.Sprintf(" -> SIG image name : '%s'", miSGImageName)) s.say(fmt.Sprintf(" -> SIG image version : '%s'", miSGImageVersion)) s.say(fmt.Sprintf(" -> SIG replication regions : '%v'", miSigReplicationRegions)) - s.say(fmt.Sprintf(" -> SIG publish location : '%s'", location)) - s.say(fmt.Sprintf(" -> SIG publish tags : '%v'", tags)) err := s.publish(ctx, mdiID, miSigPubRg, miSIGalleryName, miSGImageName, miSGImageVersion, miSigReplicationRegions, location, tags) if err != nil { diff --git a/examples/azure/ubuntu_managed_image_sig.json b/examples/azure/ubuntu_managed_image_sig.json new file mode 100644 index 000000000..4789ad891 --- /dev/null +++ b/examples/azure/ubuntu_managed_image_sig.json @@ -0,0 +1,46 @@ +{ + "variables": { + "client_id": "{{env `ARM_CLIENT_ID`}}", + "client_secret": "{{env `ARM_CLIENT_SECRET`}}", + "subscription_id": "{{env `ARM_SUBSCRIPTION_ID`}}", + "tenant_id": "{{env `ARM_TENANT_ID`}}" + }, + "builders": [{ + "type": "azure-arm", + + "client_id": "{{user `client_id`}}", + "client_secret": "{{user `client_secret`}}", + "tenant_id": "{{user `tenant_id`}}", + "subscription_id": "{{user `subscription_id`}}", + + "os_type": "Linux", + "image_publisher": "Canonical", + "image_offer": "UbuntuServer", + "image_sku": "16.04-LTS", + + "location": "West Central US", + "vm_size": "Standard_DS2_v2", + + "managed_image_resource_group_name": "PackerSigRGManagedImageRG", + "managed_image_name": "demo-image-sig-packer", + "shared_image_gallery_destination": { + "resource_group": "PackerSigPublishRG", + "gallery_name": "PackerSigGallery", + "image_name": "PackerSigImageDefinition", + "image_version": "1.0.0", + "replication_regions": ["South Central US"] + } + }], + "provisioners": [{ + "execute_command": "chmod +x {{ .Path }}; {{ .Vars }} sudo -E sh '{{ .Path }}'", + "inline": [ + "apt-get update", + "apt-get upgrade -y", + + "/usr/sbin/waagent -force -deprovision+user && export HISTSIZE=0 && sync" + ], + "inline_shebang": "/bin/sh -x", + "type": "shell" + }] +} +