File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
infrastructure/terraform/components/api Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments