ecs tag propagation

2023. 4. 4. 16:18AWS/Tags

728x90
SMALL

- 개요

AWS resouce tag관리를 위해 Task Definition이나 Service의 Tag를 Task도 상속

 

 

- 방법 (AWS Web Console)

ECS Service
"enableECSManagedTags": "True"
"propagateTags": "Task Definition"
"Tags xxxx"

 

 

- 방법 (CLI)

aws ecs describe-services --services <servicename> --cluster <clustername> --region <region> --query 'services[*].propagateTags' --output text
aws ecs describe-services --services <servicename> --cluster <clustername> --region <region> --query 'services[*].enableECSManagedTags' --output text
aws ecs update-service --service <servicename> --region <region> --cluster <clustername> --enable-ecs-managed-tags
aws ecs update-service --service <servicename> --region <region> --cluster <clustername> --propagate-tags TASK_DEFINITION|SERVICE|NONE

 

 

- reference

https://docs.aws.amazon.com/cli/latest/reference/ecs/update-service.html
https://docs.aws.amazon.com/cli/latest/reference/ecs/describe-services.html
https://docs.aws.amazon.com/ko_kr/AmazonECS/latest/developerguide/ecs-using-tags.html
https://aws.amazon.com/ko/premiumsupport/knowledge-center/ecs-troubleshoot-tagging-tasks/

 

728x90
LIST

'AWS > Tags' 카테고리의 다른 글

User-defined cost allocation tags  (1) 2023.01.30
AWS EC2 Key pairs tagging  (0) 2023.01.25