desktop-environment/packer/desktop-environment.json
Jackson Delahunt 904c687ea3 packer
2019-02-26 13:48:10 +11:00

25 lines
791 B
JSON

{
"builders": [
{
"type": "googlecompute",
"source_image_family": "ubuntu-minimal-1810",
"project_id": "stemnapp",
"zone": "australia-southeast1-a",
"instance_name": "packer-${var.DESKTOP_ENVIRONMENT_REGISTRY}-${var.DESKTOP_ENVIRONMENT_REPOSITORY}-{{timestamp}}",
"image_name": "${var.DESKTOP_ENVIRONMENT_REGISTRY}-${var.DESKTOP_ENVIRONMENT_REPOSITORY}",
"ssh_username": "root"
}
],
"provisioners": [
{
"type": "shell",
"inline": [
"# Clone the desktop environment repository",
"git clone https://github.com/${var.DESKTOP_ENVIRONMENT_REGISTRY}-${var.DESKTOP_ENVIRONMENT_REPOSITORY}",
"# Bootstrap the host",
"${var.DESKTOP_ENVIRONMENT_REPOSITORY}/host/bootstrap.sh"
]
}
]
}