You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
1- Associate a web app with an APIM using the api_management_api_id parameter in Terraform.
2- Attempt to unlink the APIM by updating the configuration with:
api_management_api_id = null
3- Apply the Terraform changes.
Expected Behaviour
The id field should be set to null, as follows:
"apiManagementConfig": {
"id": null
}
Actual Behaviour
The web app configuration reflects the following incorrect state:
"apiManagementConfig": {
"id": ""
}
Steps to Reproduce
To resolve the issue, I had to manually update the web app configuration using Azure CLI to set the id field to null
Is there an existing issue for this?
Community Note
Terraform Version
1.5.0
AzureRM Provider Version
3.0.0
Affected Resource(s)/Data Source(s)
azurerm_windows_web_app
Terraform Configuration Files
Debug Output/Panic Output
1- Associate a web app with an APIM using the api_management_api_id parameter in Terraform. 2- Attempt to unlink the APIM by updating the configuration with: api_management_api_id = null 3- Apply the Terraform changes.
Expected Behaviour
The id field should be set to null, as follows:
"apiManagementConfig": {
"id": null
}
Actual Behaviour
The web app configuration reflects the following incorrect state:
"apiManagementConfig": {
"id": ""
}
Steps to Reproduce
To resolve the issue, I had to manually update the web app configuration using Azure CLI to set the id field to null
echo '{
"apiManagementConfig": {
"id": null
}
}' > config.json
az webapp config set --name --resource-group --generic-configurations @config.json --debug
Important Factoids
No response
References
No response
The text was updated successfully, but these errors were encountered: