스탠드얼론 AWS 계정에 Compute Optimizer Automation 전체 액세스를 부여하는 정책

스탠드얼론 AWS 계정에 Compute Optimizer Automation 전체 액세스를 부여하는 정책

이 정책은 단독(standalone) AWS 계정에서 Compute Optimizer Automation에 대한 전체(full) 액세스를 부여하는 권한 기반 정책이에요.

출처: 문서

본문

aco-automation:* 모든 액션과 ec2:DescribeVolumes 액션을 모든 리소스(*)에 대해 허용해요.

JSON 형식의 정책은 다음과 같아요.

{
	"Version":"2012-10-17", 
	"Statement": [
		{
			"Effect": "Allow",
			"Action": [
				"aco-automation:*",
				"ec2:DescribeVolumes"
			],
			"Resource": "*"
		}
	]
}

더 알아보기 (Learn more)