This repo is being archived due to deprecation of Launch Configurations by AWS. Use at your own risk.
./automate-launch-configuration-update-with-latest-image.sh <AWS_PROFILE> <AWS_REGION> <ASG_NAME>
./automate-launch-configuration-update-with-latest-image.sh <AWS_PROFILE> <AWS_REGION> <ASG_NAME> <INSTANCE_ID>
This script will do the following (in order):
- Get a list of instances running inside the autoscaling group, only if instance ID is not provided.
- Create an AMI of any random instance and store AMI ID. Alternatively, pass the instance ID to use that instance instead of any random.
- Fetch the launch configuration name to an autoscaling group (passed as parameter to script)
- Create a new launch configuration with the updated image
- Assign the Launch Configuration to the existing Auto Scaling Group (ASG)
- Removal of old Launch Configurations (commented for now)
- Before running the script on OSX, make sure to install
gawk
under/usr/local/bin/
andgdate
under/usr/local/bin/
folders. jq
version > 1.6 required.- When you change the launch configuration for your Auto Scaling group, any new instances are launched using the new configuration parameters, but existing instances are not affected. This is the default configuration.
- RUN THIS ON TEST ENVIRONMENT FIRST. I AM NOT RESPONSIBLE FOR ANY UNINTENDED DAMAGE.