From cb590dcfb0eb2642cb60d4daf523f68d81a31e8c Mon Sep 17 00:00:00 2001 From: Stephen Augustus Date: Mon, 7 Aug 2017 20:09:29 -0700 Subject: [PATCH] azure/console-proxy: Fix `storage_profile_os_disk.name` `storage_profile_os_disk.name` must be set to "" when using managed disks. See: * https://github.com/hashicorp/terraform/issues/14906 * https://github.com/hashicorp/terraform/issues/14932 --- modules/azure/master-as/console-proxy.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/azure/master-as/console-proxy.tf b/modules/azure/master-as/console-proxy.tf index efaae77d33..c082f6f597 100644 --- a/modules/azure/master-as/console-proxy.tf +++ b/modules/azure/master-as/console-proxy.tf @@ -174,7 +174,7 @@ resource "azurerm_virtual_machine_scale_set" "console-proxy" { } storage_profile_os_disk { - name = "proxy-osdisk" + name = "" managed_disk_type = "${var.storage_type}" create_option = "FromImage" caching = "ReadWrite"