Replies: 1 comment
-
|
Included this in a PR I just opened: #7876 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a project that has both persistent parameters and per-deploy parameters (e.g., one of the lambda functions has to have the current commit hash as an environment variable for error reporting reasons). However, I've noticed that when I use the
--parameter-overridescommand line argument, it completely ignores theparameter_overridessection of mysamconfig.yamlfile. I would have expectedsam deployto merge parameter values in “immediacy” order, such as:--parameter-overrideshave highest precedencesamconfig.{toml,yaml}parameter_overrideshave next highest precedenceIs there a way I can achieve what I'm trying to do without either adding ephemeral values to my config file or putting all overrides on the command line?
Beta Was this translation helpful? Give feedback.
All reactions