Skip to content

Commit b1b458a

Browse files
committed
Reformatted create-vm-scaleset-network-disks-hcl
1 parent b452851 commit b1b458a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

quickstart/201-vmss-jumpbox/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ resource "azurerm_public_ip" "vmss" {
4343
name = "vmss-public-ip"
4444
location = var.location
4545
resource_group_name = azurerm_resource_group.vmss.name
46-
allocation_method = "Static"
46+
allocation_method = "Static"
4747
domain_name_label = random_string.fqdn.result
4848
tags = var.tags
4949
}
@@ -148,7 +148,7 @@ resource "azurerm_public_ip" "jumpbox" {
148148
name = "jumpbox-public-ip"
149149
location = var.location
150150
resource_group_name = azurerm_resource_group.vmss.name
151-
allocation_method = "Static"
151+
allocation_method = "Static"
152152
domain_name_label = "${random_string.fqdn.result}-ssh"
153153
tags = var.tags
154154
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
output "vmss_public_ip" {
2-
value = azurerm_public_ip.vmss.fqdn
2+
value = azurerm_public_ip.vmss.fqdn
33
}
44

55
output "jumpbox_public_ip" {
6-
value = azurerm_public_ip.jumpbox.fqdn
6+
value = azurerm_public_ip.jumpbox.fqdn
77
}

0 commit comments

Comments
 (0)