7ee3333a2d
Add an OS tag to Packer builds of our e2e test AMIs and then filters by this in Terraform.
32 lines
564 B
JSON
32 lines
564 B
JSON
{
|
|
"builders": [{
|
|
"type": "amazon-ebs",
|
|
"region": "us-east-1",
|
|
"source_ami": "ami-80861296",
|
|
"instance_type": "t2.medium",
|
|
"ssh_username": "ubuntu",
|
|
"ami_name": "nomad-e2e-{{timestamp}}",
|
|
"ami_groups": ["all"],
|
|
"tags": {
|
|
"OS": "Ubuntu"
|
|
}
|
|
}],
|
|
"provisioners": [
|
|
{
|
|
"type": "shell",
|
|
"inline": [
|
|
"sudo mkdir /ops",
|
|
"sudo chmod 777 /ops"
|
|
]
|
|
},
|
|
{
|
|
"type": "file",
|
|
"source": "shared",
|
|
"destination": "/ops"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"script": "shared/scripts/setup.sh"
|
|
}]
|
|
}
|