Skip to content

Commit

Permalink
azure/console-proxy: Fix storage_profile_os_disk.name
Browse files Browse the repository at this point in the history
`storage_profile_os_disk.name` must be set to "" when using managed disks.
See:
* hashicorp/terraform#14906
* hashicorp/terraform#14932
  • Loading branch information
Stephen Augustus committed Aug 10, 2017
1 parent ecdc1aa commit cb590dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/azure/master-as/console-proxy.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit cb590dc

Please sign in to comment.