VPC"handson-cli-vpc"を削除します。
手順に必要な設定値を変数に格納をします。
0. リージョンの指定
リージョンを指定します。
環境変数の設定: export AWS_DEFAULT_REGION='ap-northeast-1'
環境変数の設定:
export AWS_DEFAULT_REGION='ap-northeast-1'
1. VPCのタグ名の指定
VPCのタグ名を指定します。
変数の設定: EC2_VPC_TAG_NAME='handson-cli-vpc'
変数の設定:
EC2_VPC_TAG_NAME='handson-cli-vpc'
各変数に正しい設定値が格納されていることを確認しながら保存します。
変数の確認: cat << END # 0. AWS_DEFAULT_REGION:"ap-northeast-1" AWS_DEFAULT_REGION="${AWS_DEFAULT_REGION}" # 1. EC2_VPC_TAG_NAME:"handson-cli-vpc" EC2_VPC_TAG_NAME="${EC2_VPC_TAG_NAME}" END
変数の確認:
cat << END # 0. AWS_DEFAULT_REGION:"ap-northeast-1" AWS_DEFAULT_REGION="${AWS_DEFAULT_REGION}" # 1. EC2_VPC_TAG_NAME:"handson-cli-vpc" EC2_VPC_TAG_NAME="${EC2_VPC_TAG_NAME}" END
下段の変数が入っていない、もしくは上段と同等の値が入っていない場合は、それぞれの手順番号に戻って変数の設定を行います。
VPC IDを取得します。
コマンド: EC2_VPC_ID=$( \ aws ec2 describe-vpcs \ --filters Name=tag:Name,Values=${EC2_VPC_TAG_NAME} \ --query 'Vpcs[].VpcId' \ --output text \ ) \ && echo ${EC2_VPC_ID} 結果(例): vpc-xxxxxxxxxxxxxxxxx
コマンド:
EC2_VPC_ID=$( \ aws ec2 describe-vpcs \ --filters Name=tag:Name,Values=${EC2_VPC_TAG_NAME} \ --query 'Vpcs[].VpcId' \ --output text \ ) \ && echo ${EC2_VPC_ID}
結果(例):
vpc-xxxxxxxxxxxxxxxxx
VPCを削除します。
変数の確認: cat << END # EC2_VPC_ID:"vpc-xxxxxxxxxxxxxxxxx" EC2_VPC_ID="${EC2_VPC_ID}" END コマンド: aws ec2 delete-vpc \ --vpc-id ${EC2_VPC_ID} 結果(例): (出力なし)
cat << END # EC2_VPC_ID:"vpc-xxxxxxxxxxxxxxxxx" EC2_VPC_ID="${EC2_VPC_ID}" END
aws ec2 delete-vpc \ --vpc-id ${EC2_VPC_ID}
(出力なし)
「VPC"handson-cli-vpc"が存在しない。」ことを確認します。
コマンド: aws ec2 describe-vpcs \ --filters Name=tag:Name,Values=${EC2_VPC_TAG_NAME} \ --query 'Vpcs[].Tags[?Key == `Name`].Value' \ --output text 結果(例): (出力なし)
aws ec2 describe-vpcs \ --filters Name=tag:Name,Values=${EC2_VPC_TAG_NAME} \ --query 'Vpcs[].Tags[?Key == `Name`].Value' \ --output text
VPCダッシュボード( https://console.aws.amazon.com/vpc/home )にアクセスします。
右上のリージョンメニューから"東京"を選択します。
左ペインの"VPC"をクリックします。
VPC一覧(画面)
検索欄にVPC名"handson-cli-vpc"を入力して、エンターキーを押します。
VPC名"handson-cli-vpc"が表示されていることを確認します。