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
You can also override parameter values using environment variables with prefixed keys. Use `envs-prefix-for-parameter-overrides` parameter to define a prefix you want action to filter out and combine with other parameters while deploying.
48
+
49
+
The biggest advantage of this approach is that you don't need to think about escaping your variables (as long as Github UI/YAML accepts it).
CFD_MyParam3: some value, that is automatically escaped
64
+
CFD_MyParam4: ${{ vars.MY_VAR_VALUE }}
65
+
```
66
+
67
+
This example will result in 4 parameter overrides: MyParam1, MyParam2, MyParam3 and MyParam4. The last two will be taken from environment variables.
68
+
45
69
## Credentials and Region
46
70
47
71
This action relies on the [default behavior of the AWS SDK for Javascript](https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/setting-credentials-node.html) to determine AWS credentials and region.
0 commit comments