일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Android
- aws
- namespace
- Python
- spring cloud config
- nginx-media-server
- wireshark
- android studio
- deployment
- Flutter
- ffmpeg
- golang
- Sysinternals
- Kubernetes
- Windows10
- RTMP
- dart
- service
- Java
- macos
- Shell script
- aws cli
- docker
- ebpf
- kubectl
- configmap
- 행정구역분류
- Pod
- HLS
- VSCode
Archives
- Today
- Total
woonizzooni
Amazon SQS : the specified queue does not exist or you do not have access to it 본문
AWS
Amazon SQS : the specified queue does not exist or you do not have access to it
woonizzooni 2020. 12. 30. 16:38
sqs.SQS.GetQueueUr("queue-name") 실행 에러
status code 400
the specified queue does not exist or you do not have access to it
에러 메시지 내용만으로는
1) queue-name이 진짜로 없거나
2) 엑세스 권한이 없거나
이군.
실제 큐가 있었으니 난 엑세스 정책을 변경함. 대충 *로...
그랬더니 해결~
변경 전 | 변경 후 |
{ "Version": "yyyy-mm-dd", "Id": "*****", "Statement": [ { "Sid": "*****", "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::{id}:root" }, "Action": "SQS:*", "Resource": "arn:aws:sqs:{region}:{id}:queue-name" } ] } |
{ "Version": "yyyy-mm-dd", "Id": "*****", "Statement": [ { "Sid": "*****", "Effect": "Allow", "Principal": "*", "Action": "sqs:*", "Resource": "arn:aws:sqs:{region}:{id}:queue-name" } ] } |
'AWS' 카테고리의 다른 글
AWS CLI 버전1 구성 (windows 10) (0) | 2021.05.24 |
---|---|
aws cli 명령 출력 제어 - Autoscaling 조회 using dictionary notation, 필터링... (0) | 2020.11.09 |
AWS SDK for Golang - Session 재사용 (0) | 2020.11.06 |
EKS 클러스터 인증 관리 (0) | 2020.03.30 |
AWS CLI 구성 (MacOS) (0) | 2020.03.29 |
Comments