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_route_table_attachment" {
source="./modules/oci/r/oci_core_route_table_attachment"# route_table_id - (required) is a type of stringroute_table_id=null# subnet_id - (required) is a type of stringsubnet_id=nulltimeouts=[{
create =null
delete =null
update =null
}]
}
resource"oci_core_route_table_attachment""this" {
# route_table_id - (required) is a type of stringroute_table_id=var.route_table_id# subnet_id - (required) is a type of stringsubnet_id=var.subnet_iddynamic"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"]
}
}
}