How does one know which autoscaling group an instance belongs to via api/aws cli commands?
Você pode usar o comando autoscaling describe-auto-scaling-instances
junto com a opção --instance-ids
, assim:
aws autoscaling describe-auto-scaling-instances --instance-ids="i-zzxxccvv"
Problem with autoscaling groups, is that these tags are not available to the instance. [...] I need to use instance tags in scripts, however, they are not available. Suggestions?
Estou interpretando isso como você deseja obter as tags do grupo de autoescala do qual a instância pertence? Usando o AutoScalingGroupName
retornado do comando mostrado acima, você pode usar o seguinte comando:
aws autoscaling describe-tags --filters Name=auto-scaling-group,Values=name-of-the-auto-scaling-group-here