下記より、Terraformにて、VPCの作成を行います。
IAMロールの権限で、操作を行っているのですが、エラーが出力されました。
ap-northeast-1と入力しているのに、どうしてRegionでエラーとなるのでしょうか?
[ec2-user@ip-172-31-44-96 terraform]$ terraform --version Terraform v0.12.24 [ec2-user@ip-172-31-44-96 terraform]$ terraform apply provider.aws.region The region where AWS operations will take place. Examples are us-east-1, us-west-2, etc. Enter a value: yes Error: Invalid AWS Region: yes [ec2-user@ip-172-31-44-96 terraform]$ cat vpc.tf ##################### # VPC 設定 ##################### # AWS上にVPCを構築 resource "aws_vpc" "vpc" { # ネットワークの範囲を設定 cidr_block = "10.0.0.0/16" # タグを設定 tags = { Name = "dev-vpc" } } [ec2-user@ip-172-31-44-96 terraform]$ aws configure list Name Value Type Location ---- ----- ---- -------- profile <not set> None None access_key **************** iam-role secret_key **************** iam-role region ap-northeast-1 config-file ~/.aws/config
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。