Nereus/terraform/infra/cloud-init.yaml.tftpl

12 lines
245 B
Text

#cloud-config
hostname: ${hostname}
manage_etc_hosts: true
users:
- name: fedora
groups: [wheel]
sudo: ALL=(ALL) NOPASSWD:ALL
shell: /bin/bash
ssh_authorized_keys:
- ${ssh_public_key}
ssh_pwauth: false
disable_root: true