terraform-provider-azurerm
terraform-provider-azurerm copied to clipboard
Support for configuring public access for mysql_flexible_server
Is there an existing issue for this?
- [X] I have searched the existing issues
Community Note
- Please vote on this issue by adding a :thumbsup: 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
Recreating issue since existing issue was closed pre-maturely #24641
Currently public_network_access_enabled
is set to computed, hence the value cannot be configured. This value can be configured when using public access connectivity method, to disable public access and use private link instead.
I think these are the required changes but I can't run the acceptance tests to check. https://github.com/JBodkin-Amphora/terraform-provider-azurerm/commit/41bc37d9504a65e77d0c5f29b788da859316e710
New or Affected Resource(s)/Data Source(s)
azurerm_mysql_flexible_server
Potential Terraform Configuration
resource "mysql_flexible_server" "this" {
public_network_access_enabled = false
}
References
No response