-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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 client_certificate_enabled
, gateway_disabled
, min_api_version
and zones
in azurerm_api_management
#12125
Conversation
Hi kt, the acctests are fixed in #12173 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @yupwei68 - LGTM 🍰
This functionality has been released in v2.64.0 of the Terraform Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
Hi, I'm getting this error using the provider v2.64.0: trying to deploy an Internal API Management in Zones: resource "azurerm_api_management" "wcdtapimtflabapim" {
name = "wcdtapimtflabapim"
location = azurerm_resource_group.wcdtapimtflabrg.location
resource_group_name = azurerm_resource_group.wcdtapimtflabrg.name
zones = [ "1", "2", "3" ]
sku_name = "Premium_3"
virtual_network_type = "Internal"
virtual_network_configuration {
subnet_id = azurerm_subnet.wcdtapimtflabvnetAPIMSubnet.id
}
identity {
type = "SystemAssigned"
}
sign_up {
enabled = true
terms_of_service {
consent_required = false
enabled = false
text = "The Terms of Service which users are required to agree to in order to sign up"
}
}
publisher_name = "wcdtapimtflab"
publisher_email = "[email protected]"
} Apparently, the parameter "properties.publicIpAddressId" (https://docs.microsoft.com/en-us/rest/api/apimanagement/2021-01-01-preview/api-management-service/create-or-update) is not available in terraform provider. Would it be that? |
Hi @walima0103 Thanks for your comment. "publicIpAddressId" is a feature currently in preview. I'll get it implemented once it's GA. |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active contributions. |
Fix #8529
#12126