2017-05-15 18:56:41 +00:00
|
|
|
{
|
|
|
|
"builders": [{
|
|
|
|
"type": "amazon-ebs",
|
|
|
|
"region": "us-east-1",
|
2017-06-24 23:24:24 +00:00
|
|
|
"source_ami": "ami-80861296",
|
2017-05-15 18:56:41 +00:00
|
|
|
"instance_type": "t2.medium",
|
|
|
|
"ssh_username": "ubuntu",
|
2019-04-11 14:11:32 +00:00
|
|
|
"ami_name": "hashistack {{timestamp}}",
|
2017-05-15 18:56:41 +00:00
|
|
|
"ami_groups": ["all"]
|
|
|
|
}],
|
|
|
|
"provisioners": [
|
|
|
|
{
|
|
|
|
"type": "shell",
|
|
|
|
"inline": [
|
|
|
|
"sudo mkdir /ops",
|
|
|
|
"sudo chmod 777 /ops"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "file",
|
2017-11-15 19:31:46 +00:00
|
|
|
"source": "../shared",
|
2017-05-15 18:56:41 +00:00
|
|
|
"destination": "/ops"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "file",
|
2017-11-15 19:31:46 +00:00
|
|
|
"source": "../examples",
|
2017-05-15 18:56:41 +00:00
|
|
|
"destination": "/ops"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "shell",
|
2019-03-11 19:08:10 +00:00
|
|
|
"script": "../shared/scripts/setup.sh",
|
|
|
|
"environment_vars": [
|
|
|
|
"INSTALL_NVIDIA_DOCKER=true"
|
|
|
|
]
|
2017-05-15 18:56:41 +00:00
|
|
|
}]
|
|
|
|
}
|