-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinventory.yml
83 lines (74 loc) · 2.19 KB
/
inventory.yml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
all:
children:
windows:
children:
controller:
hosts:
dc:
ansible_host: 192.168.1.10
vagrant_box: jborean93/WindowsServer2016
domain_children:
hosts:
web:
ansible_host: 192.168.1.15
vagrant_box: jborean93/WindowsServer2016
vars:
ansible_user: vagrant
ansible_password: vagrant
ansible_connection: winrm
ansible_port: 5986
ansible_winrm_transport: basic
ansible_winrm_server_cert_validation: ignore
# role specific variables
man_domain_setup_domain_name: domain.local
man_domain_setup_safe_mode_password: VagrantPass1
man_domain_setup_username: vagrant-domain
man_domain_setup_password: VagrantPass1
man_domain_join_domain_name: domain.local
man_domain_join_username: [email protected]
man_domain_join_password: VagrantPass1
man_adcs_winrm_domain: domain.local
vault_svc_password: VaultPass1
ubuntu:
children:
vault_hosts:
hosts:
vault:
ansible_host: 192.168.1.20
vagrant_box: bento/ubuntu-18.04
vars:
man_domain_setup_domain_name: domain.local
man_domain_setup_safe_mode_password: VagrantPass1
man_domain_setup_username: vagrant-domain
man_domain_setup_password: VagrantPass1
man_domain_join_domain_name: domain.local
man_domain_join_username: [email protected]
man_domain_join_password: VagrantPass1
man_adcs_winrm_domain: domain.local
vault_svc_password: VaultPass1
# used by Vagrant for port forwarding
# the format is 29xyy where x is the protocol and
# yy is the number of the host.
vars:
vagrant_ports:
rdp:
guest: 3389
host: 29500
ssh:
guest: 22
host: 29600
winrm_http:
guest: 5985
host: 29700
winrm_https:
guest: 5986
host: 29800
smb:
guest: 445
host: 29900
http:
guest: 80
host: 30000
vault:
guest: 8200
host: 30100