デフォルトVPCがない環境でPackerを実行したらエラった話 : はじめに AWS環境でPackerを使ってゴールデンAMIを作ろうとしたら、エラったので書きます! 構成について Packerは、事前に導入していることを前提とします。 また、今回作成するAMIは、Amazon Linux 2の最新を使います。 Cloud: AWS Region: ap-northeast-1 OS: Amazon Linux 2 AMI (HVM), SSD Volume Type - ami-0a2de1c3b415889d2 Packer: 1.3.3 Packerテンプレートの作成 以下のテンプレートを作成します。 build.json variable.json サンプルのため、 yum update のみの単純なbuild.jsonを作成します。 AMIの指定を amzn2-ami-hvm-*-x86_64-gp2 にすることでAMIの最新を取得することができます。 クラスメソッドさん の記事を参考にさせていただきました。ありがとうございます! build.json { "builders": [{ "type": "amazon-ebs", "region": "{{user `region`}}", "source_ami_filter": { "filters": { "name": "amzn2-ami-hvm-*-x86_64-gp2" }, "owners": "137112412989", "most_recent": true }, "instance_type": "{{user `instance_type`}}", "ssh_username": "{{user `ssh_username`}}...