-
Notifications
You must be signed in to change notification settings - Fork 35
/
inventory_ci.yml
46 lines (41 loc) · 978 Bytes
/
inventory_ci.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
---
# This is used in a CI workflow and can be removed from your template
all:
children:
dev:
hosts:
localhost:
vars:
connection: local
controller_configuration_async_retries: 300
# assign_galaxy_credentials_to_org: false
automationcontroller:
hosts:
127.0.0.1:
vars:
connection: local
automationhub:
hosts:
127.0.0.1:
vars:
connection: local
automationedacontroller:
hosts:
127.0.0.1:
vars:
connection: local
# can be automationhub if you do not have a specific server for this
builder:
hosts:
localhost:
vars:
connection: local
# Only needed if installing AAP with automation, can be removed if you are not. See Install docs if unsure what server should be the database host.
database:
hosts:
127.0.0.1:
vars:
connection: local
vars:
env: dev
...