Is there an existing issue for this?
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
Since the customer IP is now released by Microsoft for Secure Hub Firewall, we need Terraform to support it. When using ip_configuration, it requires a subnet ID so we cannot use that.
https://learn.microsoft.com/en-us/azure/firewall/secured-hub-customer-public-ip
New or Affected Resource(s)/Data Source(s)
azurerm_firewall
Potential Terraform Configuration
virtual_hub {
virtual_hub_id = azurerm_virtual_hub.vhub.id
dynamic "public_ip_addresses" {
for_each = var.public_ip_ids
content {
id = public_ip_addresses.value
}
}
}
References
No response
Is there an existing issue for this?
Community Note
Description
Since the customer IP is now released by Microsoft for Secure Hub Firewall, we need Terraform to support it. When using ip_configuration, it requires a subnet ID so we cannot use that.
https://learn.microsoft.com/en-us/azure/firewall/secured-hub-customer-public-ip
New or Affected Resource(s)/Data Source(s)
azurerm_firewall
Potential Terraform Configuration
References
No response