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
module"azurerm_api_management_policy" {
source="./modules/azurerm/r/azurerm_api_management_policy"# api_management_id - (required) is a type of stringapi_management_id=null# xml_content - (optional) is a type of stringxml_content=null# xml_link - (optional) is a type of stringxml_link=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_api_management_policy""this" {
# api_management_id - (required) is a type of stringapi_management_id=var.api_management_id# xml_content - (optional) is a type of stringxml_content=var.xml_content# xml_link - (optional) is a type of stringxml_link=var.xml_linkdynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
# read - (optional) is a type of stringread=timeouts.value["read"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}