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_servicebus_namespace" {
source="./modules/azurerm/r/azurerm_servicebus_namespace"# capacity - (optional) is a type of numbercapacity=null# location - (required) is a type of stringlocation=null# name - (required) is a type of stringname=null# resource_group_name - (required) is a type of stringresource_group_name=null# sku - (required) is a type of stringsku=null# tags - (optional) is a type of map of stringtags={}
# zone_redundant - (optional) is a type of boolzone_redundant=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_servicebus_namespace""this" {
# capacity - (optional) is a type of numbercapacity=var.capacity# location - (required) is a type of stringlocation=var.location# name - (required) is a type of stringname=var.name# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# sku - (required) is a type of stringsku=var.sku# tags - (optional) is a type of map of stringtags=var.tags# zone_redundant - (optional) is a type of boolzone_redundant=var.zone_redundantdynamic"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"]
}
}
}