hashicorp / terraform-provider-azurestack

Terraform provider for Azure Stack
https://www.terraform.io/docs/providers/azurestack/
Mozilla Public License 2.0
40 stars 64 forks source link

Support for New Fast Path VPN Gateway SKUs #276

Open Mattzr opened 6 months ago

Mattzr commented 6 months ago

Community Note

Description

With the introduction of Fast Path VPN - it is essential to update the list of gateway SKUs in the code. At the moment any of the new fast path SKUs are failing because they are not in the list of string used for the validation logic.

New or Affected Resource(s)

Potential Terraform Configuration

resource "azurestack_virtual_network_gateway" "test" {
  name                = "test"
  location            = azurestack_resource_group.test.location
  resource_group_name = azurestack_resource_group.test.name

  type     = "Vpn"
  vpn_type = "RouteBased"
  sku      = "VpnGw1"

  ip_configuration {
    public_ip_address_id          = azurestack_public_ip.test.id
    private_ip_address_allocation = "Dynamic"
    subnet_id                     = azurestack_subnet.test.id
  }
}

References

bjoernf73 commented 4 months ago

Please add it!