File tree 4 files changed +24
-9
lines changed
apply-configurations/tasks
4 files changed +24
-9
lines changed Original file line number Diff line number Diff line change 1
1
UBUNTU_LAB_IP = 192.168.50.100
2
2
UBUNTU_LAB_CPU = 2
3
- UBUNTU_LAB_DISK_SIZE = 40GB
4
- UBUNTU_LAB_RAM = 2048
3
+ UBUNTU_LAB_DISK_SIZE = 64GB
4
+ UBUNTU_LAB_RAM = 6144
Original file line number Diff line number Diff line change 1
- # git name
2
- # git email
3
- # git config --global diff.ansible-vault.textconv "ansible-vault view"
1
+ ---
2
+ - git_config :
3
+ name : user.name
4
+ scope : global
5
+ value : " Renan Ben Moshe"
6
+
7
+ - git_config :
8
+ name : user.email
9
+ scope : global
10
+
11
+
12
+ - git_config :
13
+ name : diff.ansible-vault.textconv
14
+ scope : global
15
+ value : " ansible-vault view"
Original file line number Diff line number Diff line change 1
1
---
2
-
3
2
ssh_path : ' /home/vagrant/.ssh'
4
3
5
4
ssh_files :
6
5
- { ssh_key: 'authorized_keys', mode: '0600' }
7
- - { ssh_key: 'id_rsa' , mode: '0600' }
8
- - { ssh_key: 'id_rsa.pub' , mode: '0664' }
6
+ - { ssh_key: 'id_rsa' , mode: '0600' }
7
+ - { ssh_key: 'id_rsa.pub' , mode: '0664' }
9
8
- { ssh_key: 'known_hosts' , mode: '0644' }
Original file line number Diff line number Diff line change 21
21
authorized_key :
22
22
user : ' vagrant'
23
23
state : present
24
- key : " {{ lookup('file', '{{ ssh_path }}/id_rsa.pub') }}"
24
+ key : " {{ lookup('file', '{{ ssh_path }}/id_rsa.pub') }}"
25
+
26
+ - name : GPG - Import private Key
27
+ become : yes
28
+ command : gpg --import '/vagrant/roles/apply-credentials/files/gpg_key/privkey.asc'
You can’t perform that action at this time.
0 commit comments