July 2017
Intermediate to advanced
402 pages
9h 38m
English
We are now going to add the Auto Scaling capability to our application. This will be done in three major phases:
At the top of the script, in the import section, add the following:
from troposphere.autoscaling import (
AutoScalingGroup,
LaunchConfiguration,
ScalingPolicy,
)
We will be able to reuse all the resources previously created when launching an EC2 instance. Most of them will stay untouched except for the security group. In the Auto Scaling group, we ...
Read now
Unlock full access