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 fefcbf4 commit 5a68678Copy full SHA for 5a68678
infrastructure/stacks/api-layer/ssm.tf
@@ -94,7 +94,7 @@ resource "aws_ssm_parameter" "splunk_hec_endpoint" {
94
}
95
96
resource "aws_ssm_parameter" "feature_toggles" {
97
- for_each = jsondecode(file("${path.root}/scripts/feature_toggle/feature_toggle.json"))
+ for_each = jsondecode(file("${path.module}/../../../scripts/feature_toggle/feature_toggle.json"))
98
99
name = "/${var.environment}/feature_toggles/${each.key}"
100
#checkov:skip=CKV2_AWS_34: Since this is a feature toggle config, secure string not needed
0 commit comments