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_ssl_cipher_suites" {
source="./modules/oci/d/oci_load_balancer_ssl_cipher_suites"# load_balancer_id - (optional) is a type of stringload_balancer_id=nullfilter=[{
name =null
regex =null
values = []
}]
}
data"oci_load_balancer_ssl_cipher_suites""this" {
# load_balancer_id - (optional) is a type of stringload_balancer_id=var.load_balancer_iddynamic"filter" {
for_each=var.filtercontent {
# name - (required) is a type of stringname=filter.value["name"]
# regex - (optional) is a type of boolregex=filter.value["regex"]
# values - (required) is a type of list of stringvalues=filter.value["values"]
}
}
}
output"id" {
description="returns a string"value=data.oci_load_balancer_ssl_cipher_suites.this.id
}
output"ssl_cipher_suites" {
description="returns a list of object"value=data.oci_load_balancer_ssl_cipher_suites.this.ssl_cipher_suites
}
output"this" {
value=oci_load_balancer_ssl_cipher_suites.this
}