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_group" {
source="./modules/azurerm/r/azurerm_api_management_group"# api_management_name - (required) is a type of stringapi_management_name=null# description - (optional) is a type of stringdescription=null# display_name - (required) is a type of stringdisplay_name=null# external_id - (optional) is a type of stringexternal_id=null# name - (required) is a type of stringname=null# resource_group_name - (required) is a type of stringresource_group_name=null# type - (optional) is a type of stringtype=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_api_management_group""this" {
# api_management_name - (required) is a type of stringapi_management_name=var.api_management_name# description - (optional) is a type of stringdescription=var.description# display_name - (required) is a type of stringdisplay_name=var.display_name# external_id - (optional) is a type of stringexternal_id=var.external_id# name - (required) is a type of stringname=var.name# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# type - (optional) is a type of stringtype=var.typedynamic"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"]
}
}
}