Skip to content

Commit

Permalink
Make the public IP address used by the VPN a standard static IP
Browse files Browse the repository at this point in the history
  • Loading branch information
halprin committed Mar 26, 2024
1 parent a64eab3 commit 1182802
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion operations/template/vpn.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ resource "azurerm_public_ip" "vpn" {
location = data.azurerm_resource_group.group.location
resource_group_name = data.azurerm_resource_group.group.name

allocation_method = "Dynamic"
sku = "Standard"
allocation_method = "Static"
}

resource "azurerm_virtual_network_gateway" "vpn" {
Expand Down

0 comments on commit 1182802

Please sign in to comment.