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_backend" {
source="./modules/oci/r/oci_load_balancer_backend"# backendset_name - (required) is a type of stringbackendset_name=null# backup - (optional) is a type of boolbackup=null# drain - (optional) is a type of booldrain=null# ip_address - (required) is a type of stringip_address=null# load_balancer_id - (required) is a type of stringload_balancer_id=null# offline - (optional) is a type of booloffline=null# port - (required) is a type of numberport=null# weight - (optional) is a type of numberweight=nulltimeouts=[{
create =null
delete =null
update =null
}]
}
resource"oci_load_balancer_backend""this" {
# backendset_name - (required) is a type of stringbackendset_name=var.backendset_name# backup - (optional) is a type of boolbackup=var.backup# drain - (optional) is a type of booldrain=var.drain# ip_address - (required) is a type of stringip_address=var.ip_address# load_balancer_id - (required) is a type of stringload_balancer_id=var.load_balancer_id# offline - (optional) is a type of booloffline=var.offline# port - (required) is a type of numberport=var.port# weight - (optional) is a type of numberweight=var.weightdynamic"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"]
}
}
}