summaryrefslogtreecommitdiffstats
path: root/roles/openshift_aws_ssh_keys/README.md
blob: 4f8667918b6cdd42b0f72d756047fc59af515dc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
openshift_aws_ssh_keys
=========

Ansible role for sshind SSH keys

Requirements
------------

Ansible Modules:


Role Variables
--------------

- r_openshift_aws_ssh_keys_users: list of dicts of users
- r_openshift_aws_ssh_keys_region: ec2_region to install the keys

Dependencies
------------


Example Playbook
----------------
```yaml
users:
- username: user1
  pub_key: <user1 ssh public key>
- username: user2
  pub_key: <user2 ssh public key>

region: us-east-1

- include_role:
    name: openshift_aws_ssh_keys
  vars:
    r_openshift_aws_ssh_keys_users: "{{ users }}"
    r_openshift_aws_ssh_keys_region: "{{ region }}"
```


License
-------

Apache 2.0

Author Information
------------------

Openshift