{% load i18n %}

{% trans "Use Jinja2 template syntax, values: " %} Example:
{% verbatim %}
#cloud-config
users:
  - default
  - name: {{sysuser}} 
    sudo: ['ALL=(ALL) NOPASSWD:ALL']
    groups: sudo
    shell: /bin/bash
    ssh_pwauth: True
    chpasswd: { expire: False }
    lock-passwd: false
    passwd: "{{password}}"
    ssh_authorized_keys:
      - {{ ssh.keys['my-key'] }}
{% for u in acl.operators %}
  - name: {{i}} 
  - shell: /bin/bash
{% endfor %}
chpasswd:
  expire: False
  list: |
{% for u in acl.operators %}
    {{u}} : {{ci.rndstr(10)}} 
{% endfor %}
{% endverbatim %}