File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
quickstart/201-vmss-jumpbox Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change 11output "vmss_public_ip" {
2- value = azurerm_public_ip. vmss . fqdn
2+ value = azurerm_public_ip. vmss . fqdn
33}
44
55output "jumpbox_public_ip" {
6- value = azurerm_public_ip. jumpbox . fqdn
6+ value = azurerm_public_ip. jumpbox . fqdn
77}
You can’t perform that action at this time.
0 commit comments