forked from redhat-cop/agnosticd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample_vars.yml
32 lines (26 loc) · 1.21 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
---
# 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/workdir # Writable working scratch directory
node_instance_count: 2 # Number of nodes to deploy
node_instance_type:
ec2: m5.xlarge # instance type
email: [email protected] # User info for notifications
guid: guid02 # Unique string used in FQDN
subdomain_base_suffix: .example.opentlc.com # Your domain used in FQDN
# Path to yum repos
own_repo_path: http://admin.example.com/repos/version
# 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
HostedZoneId: Z3IHLWJZOU9SRT # You will need to change this
key_name: opentlc_admin_backdoor # Keyname must exist in AWS
# AWS Credentials. These are required (don't sync them to your fork)
# aws_access_key_id:
# aws_secret_access_key:
#
...