Added terraform script for Hetzner cloud (#8053)

This commit is contained in:
Fredrik Liv
2021-10-07 19:11:46 +02:00
committed by GitHub
parent 5fcf047191
commit e87d4e9ce3
12 changed files with 498 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#cloud-config
users:
- default
- name: ubuntu
shell: /bin/bash
sudo: "ALL=(ALL) NOPASSWD:ALL"
ssh_authorized_keys:
%{ for ssh_public_key in ssh_public_keys ~}
- ${ssh_public_key}
%{ endfor ~}
ssh_authorized_keys:
%{ for ssh_public_key in ssh_public_keys ~}
- ${ssh_public_key}
%{ endfor ~}