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 253b5bc commit 560c0a4Copy full SHA for 560c0a4
data.tf
@@ -24,7 +24,7 @@ locals {
24
secret_environment_variables = flatten([
25
for name, valueFrom in var.secret_environment_variables : {
26
name = name
27
- valueFrom = valueFrom
+ valueFrom = "${var.global_parameter_path_prefix}${valueFrom}"
28
}
29
])
30
variables.tf
@@ -13,6 +13,12 @@ variable "command" {
13
default = ""
14
15
16
+variable "global_parameter_path_prefix" {
17
+ description = "Path prefix for global parameter"
18
+ type = string
19
+ default = ""
20
+}
21
+
22
variable "image" {
23
description = "ECR image"
type = string
0 commit comments