I'm trying to pass multiple capabilities to sam deploy
sam deploy --guided --capabilities "CAPABILITY_IAM CAPABILITY_AUTO_EXPAND"
I have tried different forms of this, essentially encoding the list as an array with "[CAPABILITY_IAM, CAPABILITY_AUTO_EXPAND]"
, and makeing them strings "[\"CAPABILITY_IAM\", \"CAPABILITY_AUTO_EXPAND\"]"
Every time it gets to the listed capablities in the process, the only thing that is listed is CAPABILITY_IAM
The documentation says that --capabilities
takes a list. What does a list of capabilities look like?
sam deploy --guided --capabilities "CAPABILITY_IAM, CAPABILITY_AUTO_EXPAND"
already? – Margetmargettesamconfig.toml
with the linecapabilities = "CAPABILITY_IAM CAPABILITY_AUTO_EXPAND"
but I can't find the correct syntax for the command line switch – Undo