mirror of
https://github.com/kingomarnajjar/desktop-environment.git
synced 2026-07-26 06:37:21 +10:00
25 lines
791 B
JSON
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"
|
|
]
|
|
}
|
|
]
|
|
}
|