반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- Spring
- 도커
- codedeploy
- Airflow
- bootstrap
- Flux
- docker
- COALESCE
- node
- codedeploy error
- or some instances in your deployment group are experiencing problems.
- aws
- VPN
- Spring Error
- IntelliJ
- codepipeline
- redis
- AWS CI/CD 구축하기
- JavaScript
- chartjs
- kubeflow
- SQL
- PostgreSQL
- codebuild
- Kafka
- aws cicd
- java bigdecimal
- chart.js
- Python
- Jenkins
Archives
- Today
- Total
Small Asteroid Blog
[AWS] CodeDeploy Blud/Green 오류 - The IAM role arn:aws:iam::ID:role/codedeploy-be-api-role does not give you permission to perform operations in the following AWS service: AmazonAutoScaling. Contact your AWS administrator if you need help. If you ar.. 본문
클라우드 및 인프라/AWS
[AWS] CodeDeploy Blud/Green 오류 - The IAM role arn:aws:iam::ID:role/codedeploy-be-api-role does not give you permission to perform operations in the following AWS service: AmazonAutoScaling. Contact your AWS administrator if you need help. If you ar..
작은소행성☄️ 2023. 10. 16. 11:06728x90
CodeDeploy Blue/Green 배포 시 다음과 같은 에러가 발생할 수 있다.
해당 에러는 CodeDeploy 역할에 아래 3가지의 Action들에 대한 정책이 없어서 발생한 것으로 정책을 추가해주면 된다.
The IAM role arn:aws:iam::ID:role/codedeploy-be-api-role does not give you permission to perform operations in the following AWS service: AmazonAutoScaling. Contact your AWS administrator if you need help. If you are an AWS administrator, you can grant permissions to your users or groups by creating IAM policies.
에러 페이지
권한 추가
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": [
"iam:PassRole",
"ec2:CreateTags",
"ec2:RunInstances"
],
"Resource": "*"
}
]
}
codedeploy-autoscaling-be-api
정책 연결
728x90
반응형
'클라우드 및 인프라 > AWS' 카테고리의 다른 글
[AWS] AWS ECR no basic auth credentials Error (0) | 2023.10.17 |
---|---|
[AWS] EC2 인스턴스에 Public DNS 부여하기 (0) | 2023.10.16 |
[AWS] EC2 ssh 접속 오류 bad permissions / Permission denied (publickey,gssapi-keyex,gssapi-with-mic). (0) | 2023.10.10 |
[AWS] ECS 사용하기 - ECS Cluster 생성 및 구성 (0) | 2022.07.22 |
[AWS] ALB , NLB, GWLB (0) | 2022.07.20 |