forked from redhat-cop/agnosticd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample_vars.yml
34 lines (27 loc) · 1.16 KB
/
sample_vars.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
---
# sample configuration file
#
# Usage: ansible-playbook main.yml -e @configs/just-a-bunch-of-nodes/sample.yml
#
# Ideally keep your copy OUTSIDE your repo, especially if using Cloud Credentials
env_type: just-a-bunch-of-nodes # Name of config to deploy
output_dir: /tmp/output_dir # Writable working scratch directory
node_instance_count: 2 # Number of nodes to deploy
node_instance_type:
ec2: m5a.large # instance type
email: CHANGEME # User info for notifications
guid: CHANGEME # Unique string used in FQDN
subdomain_base_suffix: CHANGEME # Your domain used in FQDN
# Repos
repo_method: satellite
set_repositories_satellite_url: CHANGEME
set_repositories_satellite_org: CHANGEME
set_repositories_satellite_activationkey: CHANGEME
# Cloud specfic settings - example given here for AWS
cloud_provider: ec2 # Which AgnosticD Cloud Provider to use
aws_region: us-east-1 # AWS Region to deploy in
# Lookup images dynamically
# see infra-images role
node_instance_image: RHEL8-default
bastion_instance_image: RHEL8-default
...