mirror of
https://github.com/valitydev/redash.git
synced 2024-11-06 17:15:17 +00:00
62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"variables": {
|
|
"aws_access_key": "",
|
|
"aws_secret_key": "",
|
|
"redash_version": "",
|
|
"image_version": ""
|
|
},
|
|
"builders": [
|
|
{
|
|
"name": "redash-us-east-1",
|
|
"type": "amazon-ebs",
|
|
"access_key": "{{user `aws_access_key`}}",
|
|
"secret_key": "{{user `aws_secret_key`}}",
|
|
"region": "us-east-1",
|
|
"source_ami": "ami-4dd2575b",
|
|
"instance_type": "t2.micro",
|
|
"ssh_username": "ubuntu",
|
|
"ami_name": "redash-{{user `image_version`}}-us-east-1"
|
|
},
|
|
{
|
|
"type": "googlecompute",
|
|
"account_file": "account.json",
|
|
"project_id": "redash-bird-123",
|
|
"source_image_family": "ubuntu-1604-lts",
|
|
"zone": "us-central1-a",
|
|
"ssh_username": "arik"
|
|
}
|
|
],
|
|
"provisioners": [
|
|
{
|
|
"type": "shell",
|
|
"inline": [
|
|
"sleep 30"
|
|
]
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"script": "ubuntu/bootstrap.sh",
|
|
"execute_command": "{{ .Vars }} sudo -E -S bash '{{ .Path }}'",
|
|
"environment_vars": ["REDASH_VERSION={{user `redash_version`}}"]
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"inline": "sudo rm /root/.ssh/authorized_keys || true"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"inline": "sudo rm /home/ubuntu/.ssh/authorized_keys || true"
|
|
}
|
|
],
|
|
"post-processors": [
|
|
{
|
|
"type": "googlecompute-export",
|
|
"only": ["googlecompute"],
|
|
"paths": [
|
|
"gs://redash-images/redash.{{user `redash_version`}}.tar.gz"
|
|
],
|
|
"keep_input_artifact": true
|
|
}
|
|
]
|
|
}
|