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 configuring SKU tier when creating a Public IP Prefix #27877

Closed
1 task done
realroywalker opened this issue Nov 4, 2024 · 1 comment · Fixed by #27882
Closed
1 task done

Support for configuring SKU tier when creating a Public IP Prefix #27877

realroywalker opened this issue Nov 4, 2024 · 1 comment · Fixed by #27882

Comments

@realroywalker
Copy link

Is there an existing issue for this?

  • I have searched the existing issues

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 comments along the lines of "+1", "me too" or "any updates", 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 and review the contribution guide to help.

Description

Currently it appears that azurerm_public_ip_prefix creates all public ip prefixes on the 'regional' tier and that the tier option is not available when creating using terraform.
The Azure API documentation suggests that the tier can be set to 'Regional' or 'Global' (as you can when creating a public ip prefix by hand in the Azure portal)
If this could be made available when using the terraform provider it would be great as currently there doesn't appear to be any way of creating a 'Global' prefix that is using an Azure assigned IP block.

New or Affected Resource(s)/Data Source(s)

azurerm_public_ip_prefix

Potential Terraform Configuration

resource "azurerm_public_ip_prefix" "example" {
  name                = "acceptanceTestPublicIpPrefix1"
  location            = azurerm_resource_group.example.location
  resource_group_name = azurerm_resource_group.example.name
  sku = "Standard"
  sku_tier = "Global"
  prefix_length = 31

  tags = {
    environment = "Production"
  }
}

References

No response

Copy link

github-actions bot commented Dec 6, 2024

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Dec 6, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants