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
-
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-overrides
command line argument, it completely ignores theparameter_overrides
section of mysamconfig.yaml
file. I would have expectedsam deploy
to merge parameter values in “immediacy” order, such as:--parameter-overrides
have highest precedencesamconfig.{toml,yaml}
parameter_overrides
have 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