aws account(2)
-
AWS를 처음 구성할 때 챙겨야 할 Quotas
개요 AWS 계정을 신규로 만들면 여러 가지 보안상의 이유로 모든 리소스를 생성하는 데 Quota로 제한이 되어 있다. 아래는 최초 생성시 기본적으로 챙겨야할 컴퓨팅 관련 Quota들이다. Quotas AWS Fargate / Fargate On-Demand vCPU resource count EC2 Instances / Running On-Demand G and VT instances EC2 Instances / All Standard (A, C, D, H, I, M, R, T, Z) instances Elastic IPs / New VPC Elastic IP Address Limit 참고 https://repost.aws/knowledge-center/ec2-on-demand-instance-vcpu..
2024.01.19 -
transfer domain to another account
- 개요 domain을 다른 AWS Account로 이관하는 방법은 아래 순서로 진행을 해야 한다 - 1. 기존 account >> aws sts get-caller-identity --query "Account" --output text 1234567890 root@ ~ >> aws route53domains list-domains --region us-east-1 { "Domains": [ { "DomainName": "example.com", "AutoRenew": true, "TransferLock": true, "Expiry": "2055-04-05T16:39:07+09:00" } ] } root@ ~ >> aws route53domains transfer-domain-to-another-aws..
2023.01.02