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_api_schema" {
source="./modules/azurerm/r/azurerm_api_management_api_schema"# api_management_name - (required) is a type of stringapi_management_name=null# api_name - (required) is a type of stringapi_name=null# content_type - (required) is a type of stringcontent_type=null# resource_group_name - (required) is a type of stringresource_group_name=null# schema_id - (required) is a type of stringschema_id=null# value - (required) is a type of stringvalue=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_api_management_api_schema""this" {
# api_management_name - (required) is a type of stringapi_management_name=var.api_management_name# api_name - (required) is a type of stringapi_name=var.api_name# content_type - (required) is a type of stringcontent_type=var.content_type# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# schema_id - (required) is a type of stringschema_id=var.schema_id# value - (required) is a type of stringvalue=var.valuedynamic"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"]
}
}
}