We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent affa1cc commit 31f173fCopy full SHA for 31f173f
modules/iam/tagging.tf
@@ -14,7 +14,7 @@ data "oci_identity_tag_namespaces" "oke" {
14
}
15
16
data "oci_identity_tags" "oke" {
17
- count = var.create_iam_resources ? 1 : 0
+ count = var.create_iam_resources && local.tag_namespace_id_found != null ? 1 : 0
18
provider = oci.home
19
tag_namespace_id = local.tag_namespace_id_found
20
state = "ACTIVE" // TODO Support reactivation of retired tag w/ update
0 commit comments