aws cli
-
AWS CLI 로 SQS 일괄 생성 및 일괄 삭제AWS 2024. 4. 12. 12:23
만약 다음과 같이 많은 queue를 생성해야 하는 경우, aws cli를 활용할 수 있습니다. SQS 일괄 생성 스크립트 #!/bin/bash # AWS 리전과 계정 ID 자동 감지 REGION=$(aws configure get region) # 큐 이름 정의 declare -a queues=( "dev-order_queue" "dev-order_queue_dlq" "dev-payment_queue" "dev-payment_queue_dlq" "stage-order_queue" "stage-order_queue_dlq" "stage-payment_queue" "stage-payment_queue_dlq" "prod-order_queue" "prod-order_queue_dlq" "prod-paymen..