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_objectstorage_objects" {
source="./modules/oci/d/oci_objectstorage_objects"# bucket - (required) is a type of stringbucket=null# delimiter - (optional) is a type of stringdelimiter=null# end - (optional) is a type of stringend=null# namespace - (required) is a type of stringnamespace=null# prefix - (optional) is a type of stringprefix=null# start - (optional) is a type of stringstart=null# start_after - (optional) is a type of stringstart_after=nullfilter=[{
name =null
regex =null
values = []
}]
}
data"oci_objectstorage_objects""this" {
# bucket - (required) is a type of stringbucket=var.bucket# delimiter - (optional) is a type of stringdelimiter=var.delimiter# end - (optional) is a type of stringend=var.end# namespace - (required) is a type of stringnamespace=var.namespace# prefix - (optional) is a type of stringprefix=var.prefix# start - (optional) is a type of stringstart=var.start# start_after - (optional) is a type of stringstart_after=var.start_afterdynamic"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_objectstorage_objects.this.id
}
output"objects" {
description="returns a list of object"value=data.oci_objectstorage_objects.this.objects
}
output"prefixes" {
description="returns a list of string"value=data.oci_objectstorage_objects.this.prefixes
}
output"this" {
value=oci_objectstorage_objects.this
}