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 %}