Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for New Fast Path VPN Gateway SKUs #276

Open
Mattzr opened this issue May 20, 2024 · 1 comment
Open

Support for New Fast Path VPN Gateway SKUs #276

Mattzr opened this issue May 20, 2024 · 1 comment

Comments

@Mattzr
Copy link

Mattzr commented May 20, 2024

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

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)

  • azurestack_virtual_network_gateway

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
Copy link

Please add it!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants