Sebastian Cruz

Results 2 comments of Sebastian Cruz

@jonassundman confirmed that is a valid workaround, but it's not good if you want to decline an invite without sending out an email. Ubuntu 16.04 Thunderbird 45.7.0 Lightning 4.7.7 Exchange...

This worked for me: ```shell #!/bin/bash STACK_NAME="mystack" TEMPLATE="mytemplate.yaml" PARAMETERS_FILE="parameters.json" PARAMS=($(jq -r '.Parameters[] | [.ParameterKey, .ParameterValue] | "\(.[0])=\(.[1])"' ${PARAMETERS_FILE})) aws cloudformation deploy \ --template-file "${TEMPLATE}" \ --stack-name "${STACK_NAME}" \ --parameter-overrides ${PARAMS[@]}...