From b1b458ab50943de7b92f7f3de40a4e6882a025a3 Mon Sep 17 00:00:00 2001 From: Tom Archer Date: Wed, 28 Jul 2021 12:12:40 -0700 Subject: [PATCH] Reformatted create-vm-scaleset-network-disks-hcl --- quickstart/201-vmss-jumpbox/main.tf | 4 ++-- quickstart/201-vmss-jumpbox/output.tf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/quickstart/201-vmss-jumpbox/main.tf b/quickstart/201-vmss-jumpbox/main.tf index c6d2f562..20aaa15e 100644 --- a/quickstart/201-vmss-jumpbox/main.tf +++ b/quickstart/201-vmss-jumpbox/main.tf @@ -43,7 +43,7 @@ resource "azurerm_public_ip" "vmss" { name = "vmss-public-ip" location = var.location resource_group_name = azurerm_resource_group.vmss.name - allocation_method = "Static" + allocation_method = "Static" domain_name_label = random_string.fqdn.result tags = var.tags } @@ -148,7 +148,7 @@ resource "azurerm_public_ip" "jumpbox" { name = "jumpbox-public-ip" location = var.location resource_group_name = azurerm_resource_group.vmss.name - allocation_method = "Static" + allocation_method = "Static" domain_name_label = "${random_string.fqdn.result}-ssh" tags = var.tags } diff --git a/quickstart/201-vmss-jumpbox/output.tf b/quickstart/201-vmss-jumpbox/output.tf index 73ea78a0..654e8409 100644 --- a/quickstart/201-vmss-jumpbox/output.tf +++ b/quickstart/201-vmss-jumpbox/output.tf @@ -1,7 +1,7 @@ output "vmss_public_ip" { - value = azurerm_public_ip.vmss.fqdn + value = azurerm_public_ip.vmss.fqdn } output "jumpbox_public_ip" { - value = azurerm_public_ip.jumpbox.fqdn + value = azurerm_public_ip.jumpbox.fqdn }