You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Great project! Here to report that I ran into several problems while running this stack on a new AWS account:
I had to create service-linked roles for autoscaling.amazonaws.com, elasticloadbalancing.amazonaws.com and rds.amazonaws.com services by running these commands in the CLI:
aws iam create-service-linked-role --aws-service-name autoscaling.amazonaws.com
aws iam create-service-linked-role --aws-service-name elasticloadbalancing.amazonaws.com
aws iam create-service-linked-role --aws-service-name rds.amazonaws.com
I'm aware that Amazon now creates these automatically when you provision a resource, but it's a bit faster this way.
I had to modify the AMI ID to the newest version of Amazon Linux 2 (ami-0e01ce4ee18447327 at the time of writing this post) in these files: config-test.json, config-uat.json, config-prod.json and env-details.py
I had to update the mysql version from 5.7.11 to 5.7.22 in databasestack.yml
Once these changes were made and the stack ran through the Test stage successfully, the UAT and Prod stages ran beautifully. Thank you for creating this, it was a great challenge for me to troubleshoot and I had a lot of fun doing it!
Geoff Moldenhauer
The text was updated successfully, but these errors were encountered:
Further remarks:
I needed to run aws iam create-service-linked-role --aws-service-name rds.amazonaws.com as well and change the region in the validate-env.py code. Further I had to adjust the keyname in env-details.yml because I created a key with a different name.
Hi,
Great project! Here to report that I ran into several problems while running this stack on a new AWS account:
aws iam create-service-linked-role --aws-service-name autoscaling.amazonaws.com
aws iam create-service-linked-role --aws-service-name elasticloadbalancing.amazonaws.com
aws iam create-service-linked-role --aws-service-name rds.amazonaws.com
I'm aware that Amazon now creates these automatically when you provision a resource, but it's a bit faster this way.
I had to modify the AMI ID to the newest version of Amazon Linux 2 (ami-0e01ce4ee18447327 at the time of writing this post) in these files: config-test.json, config-uat.json, config-prod.json and env-details.py
I had to update the mysql version from 5.7.11 to 5.7.22 in databasestack.yml
Once these changes were made and the stack ran through the Test stage successfully, the UAT and Prod stages ran beautifully. Thank you for creating this, it was a great challenge for me to troubleshoot and I had a lot of fun doing it!
Geoff Moldenhauer
The text was updated successfully, but these errors were encountered: