Implement basic key directory structure
This commit is contained in:
42
group_vars/all.yml
Normal file
42
group_vars/all.yml
Normal file
@@ -0,0 +1,42 @@
|
||||
---
|
||||
ansible_user: "ansible"
|
||||
|
||||
users:
|
||||
# - name: username (required)
|
||||
# fullname: user's full name (optional)
|
||||
# password: quoted hash of password (required)
|
||||
# autorized: array of keys allowed to ssh into account (optional)
|
||||
# keys: array of keys given to the account to use (optional)
|
||||
# admin: boolean whether to give sudo privleges (optional)
|
||||
|
||||
- name: root
|
||||
password: "$6$X.yVUBXt2mFIZifh$/28nInewpIcTv4gkbwvD11HONamOdNoPdLfOS9Vc8y1hhQ9bYaa6lpuDqs9kepFqmWk/b1Y5xirxuMJ0Lt4Ls/"
|
||||
# The admin key isn't needed...because it's root
|
||||
|
||||
- name: seldon
|
||||
password: "$6$JP95938ETaQOaWIn$aXB2gAq.hahVX/LlIUEKrHEuPYrppiUZwyqRt32N6Sd2qddUamwIy1bY1Eic0LKOxVs30WaK.NARvgspeFwib1"
|
||||
autorized: >
|
||||
['keys/users/enpaul_omni.pub']
|
||||
admin: True
|
||||
|
||||
- name: ansible
|
||||
password: "$6$0T/MG5AmDgBDDuYQ$Hz0p3eXIzPCgPdqr1Xy/NK/X8JUL8GP4o8zH80eGGGAetjc1P5KxFrAC4Vg8dknI0dOjOa9mn9Gtk5wZVX6uS1"
|
||||
autorized: >
|
||||
['keys/automation/enpaul_omni_ansible.pub']
|
||||
admin: True
|
||||
|
||||
- name: enpaul
|
||||
fullname: Ethan N. Paul
|
||||
password: "$6$mTfv47Xr1/bmYU80$W90AQisMUGjYQF5KOo67hHQl8sgxQH4HPwi.Bh6qUYcwIdG9ICyqAnBYrmtfFohGYvjU7jC/3AXPUWY8vnWLJ/"
|
||||
autorized: >
|
||||
['keys/users/enpaul_omni.pub']
|
||||
keys: >
|
||||
['keys/users/enpaul_omni',
|
||||
'keys/automation/enpaul_omni_ansible',
|
||||
'keys/users/enpaul_starry',
|
||||
'keys/automation/enpaul_starry_ansible']
|
||||
admin: True
|
||||
|
||||
router:
|
||||
address: router.tre2.local
|
||||
dhcp_server: DOMAIN
|
Reference in New Issue
Block a user