1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

add new application datasource. provides basic interface for cloud-init tool (hostname, root ssh authorized keys)

This commit is contained in:
Ing. Jan KRCMAR 2018-06-13 10:50:36 +02:00
parent 43a8fb6dc1
commit 82eb5abe52
10 changed files with 100 additions and 0 deletions

View file

@ -0,0 +1,6 @@
#cloud-config
{% if instance_keys %}
ssh_authorized_keys:
{% for key in instance_keys %} - {{ key }}{% endfor %}
{% endif %}