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_virtual_hub_route_table" {
source="./modules/azurerm/r/azurerm_virtual_hub_route_table"# labels - (optional) is a type of set of stringlabels=[]
# name - (required) is a type of stringname=null# virtual_hub_id - (required) is a type of stringvirtual_hub_id=nullroute=[{
destinations = []
destinations_type =null
name =null
next_hop =null
next_hop_type =null
}]
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_virtual_hub_route_table""this" {
# labels - (optional) is a type of set of stringlabels=var.labels# name - (required) is a type of stringname=var.name# virtual_hub_id - (required) is a type of stringvirtual_hub_id=var.virtual_hub_iddynamic"route" {
for_each=var.routecontent {
# destinations - (required) is a type of set of stringdestinations=route.value["destinations"]
# destinations_type - (required) is a type of stringdestinations_type=route.value["destinations_type"]
# name - (required) is a type of stringname=route.value["name"]
# next_hop - (required) is a type of stringnext_hop=route.value["next_hop"]
# next_hop_type - (optional) is a type of stringnext_hop_type=route.value["next_hop_type"]
}
}
dynamic"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"]
}
}
}