diff options
Diffstat (limited to 'packer')
-rw-r--r-- | packer/vars/ubuntu-16.04-arm64.json | 12 | ||||
-rw-r--r-- | packer/vars/ubuntu-18.04-arm64.json | 12 |
2 files changed, 24 insertions, 0 deletions
diff --git a/packer/vars/ubuntu-16.04-arm64.json b/packer/vars/ubuntu-16.04-arm64.json new file mode 100644 index 000000000..ad161dc4f --- /dev/null +++ b/packer/vars/ubuntu-16.04-arm64.json @@ -0,0 +1,12 @@ +{ + "arch": "arm64", + "base_image": "Ubuntu 16.04 LTS (arm64) [2020-03-11]", + "cloud_user_data": "common-packer/provision/ubuntu-user_data.sh", + "distro": "Ubuntu 16.04", + "flavor": "v2-standard-1", + "source_ami_filter_name": "*ubuntu*16.04*", + "source_ami_filter_owner": "099720109477", + "ssh_user": "ubuntu", + "vm_use_block_storage": "true", + "vm_image_disk_format": "raw" +} diff --git a/packer/vars/ubuntu-18.04-arm64.json b/packer/vars/ubuntu-18.04-arm64.json new file mode 100644 index 000000000..38315f86b --- /dev/null +++ b/packer/vars/ubuntu-18.04-arm64.json @@ -0,0 +1,12 @@ +{ + "arch": "arm64", + "base_image": "Ubuntu 18.04 LTS (arm64) [2020-02-18]", + "cloud_user_data": "common-packer/provision/ubuntu-user_data.sh", + "distro": "Ubuntu 18.04", + "flavor": "v2-standard-1", + "source_ami_filter_name": "*ubuntu*18.04*", + "source_ami_filter_owner": "099720109477", + "ssh_user": "ubuntu", + "vm_use_block_storage": "true", + "vm_image_disk_format": "raw" +} |