

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# 가속화를 CloudFormation 위해를 사용하여 AutoScaling 그룹(ASG)에 태그 지정
<a name="acc-tag-cf-ex-tag-asg"></a>

다음은 **ams:rt:ams-managed** 태그와 **true** 값을에서 관리하는 Auto Scaling 그룹에 적용하는 방법의 예입니다 CloudFormation. Auto Scaling 그룹은 자신이 생성한 Amazon EC2 인스턴스에 태그를 전파합니다. **ams:rt:ams-managed** 태그는 AMS Accelerate에서 리소스를 모니터링하도록 옵트인합니다.

```
  Type: AWS::AutoScaling::AutoScalingGroup
Properties: 
  AutoScalingGroupName: "SampleASG"
  
  # ...other properties...
  
  Tags: 
    - Key: "ams:rt:ams-managed"
      Value: "true"
```