AWS 명명 규칙(AWS Naming Convention)
규칙 설명
[sitecode]-[region]-[environment]-[resource_type]-[sequence_number]
- sitecode : 사이트 이름 또는 서비스 이름
- region : aws 리전(seoul|virginia|tokyo|singapore)
- environment(env) : dev/test/stage/prod
- resource_type : 리소스 타입(vpc|subnet|ec2|sg|alb|nlb|rt|rtb)
- sequence_number : 일련 번호
리소스 타입 | 이름 예제 | 비고 |
VPC | mocha-seoul-prod-vpc-101 | |
서브넷 | mocha-vpc-101-sb-01 | |
인터넷 게이트웨이 | mocha-vpc-101-igw-01 | |
DHCP 옵션 세트 | mocha-vpc-101-dhcp-01 | |
엔드포인트 | ||
NAT 게이트웨이 | ||
피어링 연결 | ||
네트워크 ACL | ||
보안 그룹 | ||
인스턴스 | ||
AMI | ||
볼륨 | ||
스냅샷 | ||
탄력적 IP | ||
키 페어 | ||
로드밸런서 | ||
대상 그룹 | ||
Auto Scaling 그룹 | ||
VPC
[sitecode]-[region]-[env]-[resource_type]-[sequence_number]
- subnet : VPC 서브넷팅 두 번째 옥텟(2nd octet)
서브넷
[sitecode]-[vpc_name]-[resource_type]-[subnet]-[sequence_number]
- subnet : 서브넷팅 세 번째 옥텟(3nd octet)
인터넷 게이트웨이
[sitecode]-[vpc_name]-[resource_type]-[sequence_number]
DHCP 옵션 세트
[sitecode]-[vpc_name]-[resource_type]-[sequence_number]
참고URL
- AWS 리전 : https://docs.aws.amazon.com/general/latest/gr/rande.html
- 리소스 타입: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
'퍼블릭 클라우드' 카테고리의 다른 글
AWS Chatbot을 Slack과 연동하여 알람을 받는 방법 (0) | 2022.12.08 |
---|---|
[aws] AWS CodePipeline (0) | 2022.12.08 |
AWS CloudFront에서 캐시된 파일을 무효화(Invalidation)하는 방법 (0) | 2022.12.06 |
Ubuntu 운영 체제에서 AWS EC2 인스턴스에 SSM Agent를 설치하는 방법 (0) | 2022.11.16 |
AWS 교차 계정 접근(Cross-Account Access)을 설정하는 방법 (0) | 2022.11.14 |