Reputation: 1561
After we configure Auto scaling group and activate it, one more ec2 instance adds up. Does auto scaling creates volume as well while creating ec2 instance? If no, Which volume the newly created instance attached to?
Upvotes: 0
Views: 1153
Reputation: 5511
It will create new volumes depending to the AMI used in the auto scaling launch configuration. If your AMI has for example two volumes configured by default, it will spawn copies of those for each new EC2 instance launched in the auto scaling group. Note that volumes cannot be simultaneously attached to multiple EC2 instances.
Upvotes: 2