Files
matchbox/examples/ignition/ssh.yaml
Dalton Hubble c27f6ad50d examples: Upgrade Ignition YAML to Fuze YAML
* With this change, reference clusters will be provisioned
by Ignition 2.0.0. Ignition v1 is no longer supported.
2016-07-05 10:46:32 -07:00

11 lines
204 B
YAML

---
{{ if index . "ssh_authorized_keys" }}
passwd:
users:
- name: core
ssh_authorized_keys:
{{ range $element := .ssh_authorized_keys }}
- {{$element}}
{{end}}
{{end}}