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
count = var.existing_scc_cos_kms_key_crn != null || var.existing_scc_cos_bucket_name != null || var.existing_scc_instance_crn != null ? 0 : 1 # no need to create any KMS resources if passing an existing key or bucket, or SCC instance
If you pass a value for existing_scc_cos_bucket_name the count is 0 and no kms module is used. The CRN condition appears to be wrong and needs a rethink of the logic:
kms
module has this count condition:If you pass a value for
existing_scc_cos_bucket_name
the count is0
and nokms
module is used. The CRN condition appears to be wrong and needs a rethink of the logic:No kms module is used but it still attempts to reference it if
var.existing_scc_cos_kms_key_crn == null
.You get this error
source code is here
The text was updated successfully, but these errors were encountered: