Created
August 8, 2019 23:32
-
-
Save Adron/72ee2b01e15e400a505b423de6d7284f to your computer and use it in GitHub Desktop.
Clusternode.json file for Packer Build.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"variables": { | |
"client_id": "{{env `TF_VAR_clientid`}}", | |
"client_secret": "{{env `TF_VAR_clientsecret`}}", | |
"tenant_id": "{{env `TF_VAR_tenant_id`}}", | |
"subscription_id": "{{env `TF_VAR_subscription_id`}}", | |
"storage_account": "adronsimagestorage", | |
"resource_group_name": "adrons-images" | |
}, | |
"builders": [{ | |
"type": "azure-arm", | |
"client_id": "{{user `client_id`}}", | |
"client_secret": "{{user `client_secret`}}", | |
"tenant_id": "{{user `tenant_id`}}", | |
"subscription_id": "{{user `subscription_id`}}", | |
"managed_image_resource_group_name": "{{user `resource_group_name`}}", | |
"managed_image_name": "base_ubuntu_image", | |
"os_type": "Linux", | |
"image_publisher": "Canonical", | |
"image_offer": "UbuntuServer", | |
"image_sku": "16.04-LTS", | |
"azure_tags": { | |
"dept": "Engineering", | |
"task": "Image deployment" | |
}, | |
"location": "westus2", | |
"vm_size": "Standard_DS2_v2" | |
}], | |
"provisioners": [{ | |
"execute_command": "chmod +x {{ .Path }}; {{ .Vars }} sudo -E sh '{{ .Path }}'", | |
"inline": [ | |
"echo 'does this even work?'" | |
], | |
"inline_shebang": "/bin/sh -x", | |
"type": "shell" | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment