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_load_balancer_path_route_set" {
source="./modules/oci/r/oci_load_balancer_path_route_set"# load_balancer_id - (required) is a type of stringload_balancer_id=null# name - (required) is a type of stringname=nullpath_routes=[{
backend_set_name =null
path =null
path_match_type = [{
match_type =null
}]
}]
timeouts=[{
create =null
delete =null
update =null
}]
}
resource"oci_load_balancer_path_route_set""this" {
# load_balancer_id - (required) is a type of stringload_balancer_id=var.load_balancer_id# name - (required) is a type of stringname=var.namedynamic"path_routes" {
for_each=var.path_routescontent {
# backend_set_name - (required) is a type of stringbackend_set_name=path_routes.value["backend_set_name"]
# path - (required) is a type of stringpath=path_routes.value["path"]
dynamic"path_match_type" {
for_each=path_routes.value.path_match_typecontent {
# match_type - (required) is a type of stringmatch_type=path_match_type.value["match_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"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}