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
Copy file name to clipboardExpand all lines: solutions/instances/main.tf
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -384,7 +384,7 @@ module "kms" {
384
384
}
385
385
count=(var.existing_cos_kms_key_crn!=null|| (length(coalesce(local.buckets_config, [])) ==0)) ?0:1# no need to create any KMS resources if passing an existing key, or bucket
count=var.existing_cos_instance_crn==null&&length(coalesce(local.buckets_config, [])) !=0?1:0# no need to call COS module if consumer is using existing COS instance
0 commit comments