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_containerengine_work_requests" {
source="./modules/oci/d/oci_containerengine_work_requests"# cluster_id - (optional) is a type of stringcluster_id=null# compartment_id - (required) is a type of stringcompartment_id=null# resource_id - (optional) is a type of stringresource_id=null# resource_type - (optional) is a type of stringresource_type=null# status - (optional) is a type of list of stringstatus=[]
filter=[{
name =null
regex =null
values = []
}]
}
data"oci_containerengine_work_requests""this" {
# cluster_id - (optional) is a type of stringcluster_id=var.cluster_id# compartment_id - (required) is a type of stringcompartment_id=var.compartment_id# resource_id - (optional) is a type of stringresource_id=var.resource_id# resource_type - (optional) is a type of stringresource_type=var.resource_type# status - (optional) is a type of list of stringstatus=var.statusdynamic"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_containerengine_work_requests.this.id
}
output"work_requests" {
description="returns a list of object"value=data.oci_containerengine_work_requests.this.work_requests
}
output"this" {
value=oci_containerengine_work_requests.this
}