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"oci_core_default_route_table" {
source="./modules/oci/r/oci_core_default_route_table"# defined_tags - (optional) is a type of map of stringdefined_tags={}
# display_name - (optional) is a type of stringdisplay_name=null# freeform_tags - (optional) is a type of map of stringfreeform_tags={}
# manage_default_resource_id - (required) is a type of stringmanage_default_resource_id=nullroute_rules=[{
cidr_block =null
description =null
destination =null
destination_type =null
network_entity_id =null
}]
timeouts=[{
create =null
delete =null
update =null
}]
}
resource"oci_core_default_route_table""this" {
# defined_tags - (optional) is a type of map of stringdefined_tags=var.defined_tags# display_name - (optional) is a type of stringdisplay_name=var.display_name# freeform_tags - (optional) is a type of map of stringfreeform_tags=var.freeform_tags# manage_default_resource_id - (required) is a type of stringmanage_default_resource_id=var.manage_default_resource_iddynamic"route_rules" {
for_each=var.route_rulescontent {
# cidr_block - (optional) is a type of stringcidr_block=route_rules.value["cidr_block"]
# description - (optional) is a type of stringdescription=route_rules.value["description"]
# destination - (optional) is a type of stringdestination=route_rules.value["destination"]
# destination_type - (optional) is a type of stringdestination_type=route_rules.value["destination_type"]
# network_entity_id - (required) is a type of stringnetwork_entity_id=route_rules.value["network_entity_id"]
}
}
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"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}