We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently azurerm_api_management is not able to set portal delegation information or pull portal delegation data as a data source.
azurerm_api_management_portal_delegation
resource "azurerm_resource_group" "example" { name = "example-resources" location = "West Europe" } resource "azurerm_api_management" "example" { name = "example-apim" location = azurerm_resource_group.example.location resource_group_name = azurerm_resource_group.example.name publisher_name = "My Company" publisher_email = "[email protected]" sku_name = "Developer_1" } resource "azurerm_api_management_portal_delegation" "example" { api_management_name = azurerm_api_management.example.name location = azurerm_resource_group.example.location resource_group_name = azurerm_resource_group.example.name subscriptions_enable = true user_registrations_enabled = false }
https://docs.microsoft.com/en-us/azure/templates/microsoft.apimanagement/2020-12-01/service/portalsettings-delegation
The text was updated successfully, but these errors were encountered:
Looks like it was added in #20399
Docs https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/api_management#delegation
Sorry, something went wrong.
No branches or pull requests
Community Note
Description
Currently azurerm_api_management is not able to set portal delegation information or pull portal delegation data as a data source.
New or Affected Resource(s)
azurerm_api_management_portal_delegation
Potential Terraform Configuration
References
https://docs.microsoft.com/en-us/azure/templates/microsoft.apimanagement/2020-12-01/service/portalsettings-delegation
The text was updated successfully, but these errors were encountered: