Files
windesheim-iac/week-2/opdracht-2/cloudinit-azure.yaml

16 lines
275 B
YAML

#cloud-config
local-hostname: vm-host-naam
users:
- name: iac
ssh-authorized-keys:
- ${azure-ssh-key}
shell: /bin/bash
write_files:
- path: /home/iac/hello.txt
content: |
Hello World
owner: 'iac:iac'
permissions: '0644'
defer: true