完了確認
「VPC"handson-cli-vpc"にサブネット"handson-cli-subnet"が存在する。」ことを確認します。
コマンド:
aws ec2 describe-subnets \
--filters Name=vpc-id,Values=${EC2_VPC_ID} \
Name=tag:Name,Values=${EC2_SUBNET_TAG_NAME} \
--query 'Subnets[].Tags[?Key == `Name`].Value' \
--output text
結果(例):
「サブネット"handson-cli-subnet"のCIDRは"10.0.0.0/24"である。」ことを確認します。
コマンド:
aws ec2 describe-subnets \
--filters Name=vpc-id,Values=${EC2_VPC_ID} \
Name=tag:Name,Values=${EC2_SUBNET_TAG_NAME} \
--query "Subnets[].CidrBlock" \
--output text
結果(例):
「サブネット"handson-cli-subnet"のAZは"ap-northeast-1a"である。」ことを確認します。
コマンド:
aws ec2 describe-subnets \
--filters Name=vpc-id,Values=${EC2_VPC_ID} \
Name=tag:Name,Values=${EC2_SUBNET_TAG_NAME} \
--query "Subnets[].AvailabilityZone" \
--output text
結果(例):