Skip to content

Commit

Permalink
set no-zone on public ips (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
glennmusa committed Jul 12, 2021
1 parent d6a63e5 commit 1606d2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/terraform/modules/bastion/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ resource "azurerm_public_ip" "bastion_host_pip" {
resource_group_name = data.azurerm_resource_group.bastion_host_rg.name
allocation_method = "Static"
sku = "Standard"
availability_zone = "No-Zone"
tags = var.tags
}

Expand Down
2 changes: 2 additions & 0 deletions src/terraform/modules/firewall/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ resource "azurerm_public_ip" "fw_client_pip" {
resource_group_name = data.azurerm_resource_group.hub.name
allocation_method = "Static"
sku = "Standard"
availability_zone = "No-Zone"
tags = var.tags
}

Expand All @@ -36,6 +37,7 @@ resource "azurerm_public_ip" "fw_mgmt_pip" {
resource_group_name = data.azurerm_resource_group.hub.name
allocation_method = "Static"
sku = "Standard"
availability_zone = "No-Zone"
tags = var.tags
}

Expand Down

0 comments on commit 1606d2d

Please sign in to comment.