nazrin/omyacid/templates/meta-data.yml

13 lines
287 B
YAML
Raw Normal View History

instance_id: "iid-{{ inst_name }}"
local-hostname: "{{ inst_name }}"
{% if !ssh_pubkeys.is_empty() -%}
2024-08-16 04:03:19 +00:00
public-keys:
{% for key in ssh_pubkeys -%}
- "{{ key }}"
{% endfor %}
2024-08-15 04:55:39 +00:00
{%- endif -%}
{% if let Some(user) = username -%}
system_info:
default_user:
name: "{{ user }}"
{%- endif %}