I deployed with `21.0.1` and now I want to upgrade to a new version. I did this after the initial deployment worked: ``` aws cloudformation deploy \ --template-file ${OUTPUT_TEMPLATE_FILE} \ --stack-name ${STACK_NAME} \ --parameter-overrides \ SuspendAutoScaling=true --capabilities CAPABILITY_IAM \ --tags env=${TAG_ENV} service=${TAG_SERVICE} ``` Afterwards: ``` aws cloudformation deploy \ --template-file ${OUTPUT_TEMPLATE_FILE} \ --stack-name ${STACK_NAME} \ --parameter-overrides \ NextCloudVersion=${NC_VERSION} --capabilities CAPABILITY_IAM \ --tags env=${TAG_ENV} service=${TAG_SERVICE} ``` That worked for me - I wonder if that is the recommended way and if so - can we add it to the README.md?
I deployed with
21.0.1and now I want to upgrade to a new version.I did this after the initial deployment worked:
Afterwards:
That worked for me - I wonder if that is the recommended way and if so - can we add it to the README.md?