View a markdown version of this page

를 사용하여 태그 가속화 CloudFormation - AMS Accelerate 사용 설명서

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

를 사용하여 태그 가속화 CloudFormation

참고

를 사용하여 태그를 적용하기 전에 먼저 Resource Tagger를 읽기 전용 모드로 설정했는지 확인합니다. CloudFormation그렇지 않으면 Resource Tagger가 구성 프로파일을 기반으로 태그를 수정할 수 있습니다. Resource Tagger를 읽기 전용 모드로 설정하는 방법과 자체 태그 제공에 대한 지침은 섹션을 참조하세요Resource Tagger 없이 태그 가속화.

를 사용하여 태그를 적용하려면 스택 수준(CloudFormation 리소스 태그 참조) 또는 개별 리소스 수준(예: EC2 인스턴스 태그 생성 참조)에서 태그를 적용할 CloudFormation수 있습니다. EC2

다음은에서 관리하는 Amazon EC2 인스턴스에 AMS Accelerate 경보 관리 태그를 적용하는 방법의 예입니다 CloudFormation.

Type: AWS::EC2::Instance Properties: InstanceType: "t3.micro" # ...other properties... Tags: - Key: "aws:rt:ams-monitoring-policy" Value: "ams-monitored" - Key: "aws:rt:ams-monitoring-policy-platform" Value: "ams-monitored-linux"

다음은 AMS Accelerate 경보 관리 태그를에서 관리하는 Auto Scaling 그룹에 적용하는 방법의 예입니다 CloudFormation. Auto Scaling 그룹은 자체적으로 생성된 Amazon EC2 인스턴스에 태그를 전파합니다.

Type: AWS::AutoScaling::AutoScalingGroup Properties: AutoScalingGroupName: "TestASG" # ...other properties... Tags: - Key: "aws:rt:ams-monitoring-policy" Value: "ams-monitored" - Key: "aws:rt:ams-monitoring-policy-platform" Value: "ams-monitored-linux"