mirror of https://github.com/rancher/dartboard.git
17 lines
300 B
YAML
17 lines
300 B
YAML
#cloud-config
|
|
users:
|
|
- default
|
|
- ${ssh_user}
|
|
password: ${password}
|
|
disable_root: false
|
|
chpasswd:
|
|
expire: false
|
|
users:
|
|
- {name: ${ssh_user}, password: ${password}, type: text}
|
|
package_update: true
|
|
ssh_authorized_keys:
|
|
%{ for public_key in ssh_keys ~}
|
|
- >-
|
|
${public_key}
|
|
%{ endfor ~}
|