Amazon aws auto scaling group group instance name tag

How to create an auto-scaling group that creates instances with a name tag containing +?

Current tag

Name LIVE 

But I want to change it to

 Name LIVE-ap-southeast-1a 
+5
source share
1 answer

I understand that you want to change Key = Name Value = LIVE to Key = Name Value = LIVE- ap-southeast-1a for instances created using the auto-scaling group.

When you create an auto-scaling group in step 4. Customize tags, you can specify the Key and Value tag. Make sure the "Tag New Instances" checkbox is selected (default):

enter image description here

If you have already configured an auto-scaling group, you can select a group and edit it:

enter image description here

I tested these steps and confirmed that new instances created by auto-scaling display the correct key and value:

enter image description here

For reference, here is the AWS Auto Scaling Labeling Guide:

http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/ASTagging.html

+7
source

Source: https://habr.com/ru/post/1233998/


All Articles