Skip to content

Commit a7a6cae

Browse files
committed
CCM-11586: SSL module always present for dummies
1 parent 381eb33 commit a7a6cae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

infrastructure/terraform/components/api/s3_bucket_object_truststore.tf renamed to infrastructure/terraform/components/api/s3_object_placeholder_truststore.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ resource "aws_s3_object" "placeholder_truststore" {
33
count = var.manually_configure_mtls_truststore ? 1 : 0
44
bucket = module.domain_truststore.bucket
55
key = "truststore.pem"
6-
content = module.supplier_ssl[0].cacert_pem
6+
content = module.supplier_ssl.cacert_pem
77

88
depends_on = [
99
module.domain_truststore,
@@ -23,7 +23,7 @@ resource "aws_s3_object" "placeholder_truststore_nonprod" {
2323
count = !var.manually_configure_mtls_truststore ? 1 : 0
2424
bucket = module.domain_truststore.bucket
2525
key = "truststore.pem"
26-
content = module.supplier_ssl[0].cacert_pem
26+
content = module.supplier_ssl.cacert_pem
2727

2828
depends_on = [
2929
module.domain_truststore,

0 commit comments

Comments
 (0)