github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/e2e/terraform/packer/packer.json (about)

     1  {
     2    "builders": [
     3      {
     4        "type": "amazon-ebs",
     5        "region": "us-east-1",
     6        "source_ami": "ami-80861296",
     7        "instance_type": "t2.medium",
     8        "ssh_username": "ubuntu",
     9        "iam_instance_profile": "packer-builder",
    10        "ami_name": "nomad-e2e-{{timestamp}}",
    11        "tags": {
    12          "OS": "Ubuntu"
    13        }
    14      }
    15    ],
    16    "provisioners": [
    17      {
    18        "type": "shell",
    19        "script": "./linux/setup.sh"
    20      }
    21    ]
    22  }