23 lines
452 B
Text
23 lines
452 B
Text
#cloud-config
|
|
hostname: dns
|
|
manage_etc_hosts: true
|
|
ssh_pwauth: false
|
|
disable_root: false
|
|
ssh_authorized_keys:
|
|
- "${host_public_key}"
|
|
chpasswd:
|
|
list: |
|
|
root:root
|
|
expire: False
|
|
packages:
|
|
- qemu-guest-agent
|
|
- dnsmasq
|
|
package_update: true
|
|
package_upgrade: true
|
|
package_reboot_if_required: true
|
|
ansible:
|
|
install_method: pip
|
|
pull:
|
|
url: "https://gitlab.com/pizzapim/dmz-dns-vm.git"
|
|
playbook_name: local.yml
|
|
accept_host_key: true
|