アカウントID

AWSのアカウントIDは右上のメニューから確認できる12桁の数字。

アカウントID

AWS CLIでアカウントIDを取得する

aws sts get-caller-identityコマンドで取得できる。

$ aws sts get-caller-identity --query 'Account' --output text
123456789012

参考: get-caller-identity

シェルスクリプトで変数にアカウントIDを代入

AWS_ACCOUNT_ID=$(aws sts get-caller-identity --query 'Account' --output text)