Update
How to update the deployment to newer version

Step 1
Open AWS console -> Cloud Formation -> Stacks
Step 2
Make sure you're in the same region you chose in Step 3.
Step 3
Click your top level stack, the one without the NESTED badge.
Step 4
Click the Update button at the top right.

Step 5
Choose the Replace current template option
Step 6
Ensure Template source is set to Amazon S3 URL
Step 7
Use the following URL as the template URL:
https://spv-wallet-template.s3.amazonaws.com/spv-wallet/latest/EksStack.template.jsonStep 8
Click Next through the form until you reach the summary page
- Wait until 
- Check the checkboxes right above buttons at the bottom of the page 
- Click "Submit" - which will trigger the update. 
Step 9
Wait until status of the stack will reach the value UPDATE_COMPLETE
Step 1
Make sure you have AWS CLI installed and authenticated
Step 2
Replace variables described below with chosen options in the following command and run it to update the stack.
aws cloudformation update-stack \
--stack-name ${Stack_Name} \
--region ${AWS_Region} \
--template-url https://spv-wallet-template.s3.amazonaws.com/spv-wallet/latest/EksStack.template.json \
--parameters ParameterKey=domainName,UsePreviousValue=true ParameterKey=hostedzoneId,UsePreviousValue=true \
--capabilities CAPABILITY_IAMWhere:
- ${Stack_Name} - is the stack name chosen during installation process 
- ${AWS_Region} - is the region where the stack was installed 
Step 3
Wait until status of the stack will reach the value UPDATE_COMPLETE, you can check it by issuing the following command:
aws cloudformation describe-stacks --stack-name ${Stack_Name} --region ${AWS_Region}Where:
- ${Stack_Name} - is the stack name chosen during installation process 
- ${AWS_Region} - is the region where the stack was installed 
Last updated
