back
terraform {
required_providers {
oci = ">= 4.21.0"
}
}
top
module "oci_ons_subscriptions" {
source = "./modules/oci/d/oci_ons_subscriptions"
# compartment_id - (required) is a type of string
compartment_id = null
# topic_id - (optional) is a type of string
topic_id = null
filter = [{
name = null
regex = null
values = []
}]
}
top
variable "compartment_id" {
description = "(required)"
type = string
}
variable "topic_id" {
description = "(optional)"
type = string
default = null
}
variable "filter" {
description = "nested block: NestingSet, min items: 0, max items: 0"
type = set(object(
{
name = string
regex = bool
values = list(string)
}
))
default = []
}
top
data "oci_ons_subscriptions" "this" {
# compartment_id - (required) is a type of string
compartment_id = var.compartment_id
# topic_id - (optional) is a type of string
topic_id = var.topic_id
dynamic "filter" {
for_each = var.filter
content {
# name - (required) is a type of string
name = filter.value["name"]
# regex - (optional) is a type of bool
regex = filter.value["regex"]
# values - (required) is a type of list of string
values = filter.value["values"]
}
}
}
top
output "id" {
description = "returns a string"
value = data.oci_ons_subscriptions.this.id
}
output "subscriptions" {
description = "returns a list of object"
value = data.oci_ons_subscriptions.this.subscriptions
}
output "this" {
value = oci_ons_subscriptions.this
}
top