add playbook for setting auth keys easily on transient instances

This commit is contained in:
Seth Vidal 2013-06-05 15:47:22 +00:00
parent b66d5dbe75
commit c1a4d9889a

View file

@ -0,0 +1,18 @@
# optionally can take --extra-vars="hostbase=hostnamebase root_auth_users='user1 user2 user3'"
- name: set auth keys
hosts: $target
user: root
gather_facts: False
vars_files:
- /srv/web/infra/ansible/vars/global.yml
- ${private}/vars.yml
- ${vars}/${ansible_distribution}.yml
vars:
- root_auth_users: ''
tasks:
- name: add root keys for sysadmin-main and other allowed users
action: authorized_key user=root key='$PIPE(${auth_keys_from_fas} @sysadmin-main ${root_auth_users})'