-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathterraform.tfvars.example
40 lines (39 loc) · 1.68 KB
/
terraform.tfvars.example
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
# NOTE: Cloud credentials should be set in environment variables.
# https://www.terraform.io/docs/providers/aws/index.html#environment-variables
# These variables should be set, at minimum. See `variables.tf` for others.
#####################
# Base
#####################
TTL = "72"
owner = "guybarros"
servers = "3"
workers = "3"
enterprise = true
vaultlicense = "<VAULT_LICENSE>"
consullicense = "<CONSUL_LICENSE>"
nomadlicense = "<NOMAD_LICENSE>"
run_nomad_jobs = "1"
#####################
# URLs
#####################
consul_url = "https://releases.hashicorp.com/consul/1.8.4/consul_1.8.4_linux_amd64.zip"
consul_ent_url = "https://releases.hashicorp.com/consul/1.8.4+ent/consul_1.8.4+ent_linux_amd64.zip"
fabio_url = "https://github.com/fabiolb/fabio/releases/download/v1.5.13/fabio-1.5.13-go1.13.4-linux_amd64"
nomad_url = "https://releases.hashicorp.com/nomad/0.12.5/nomad_0.12.5_linux_amd64.zip"
nomad_ent_url = "https://releases.hashicorp.com/nomad/0.12.5+ent/nomad_0.12.5+ent_linux_amd64.zip"
vault_url = "https://releases.hashicorp.com/vault/1.5.4/vault_1.5.4_linux_amd64.zip"
vault_ent_url = "https://releases.hashicorp.com/vault/1.5.4+ent/vault_1.5.4+ent_linux_amd64.zip"
cni_version = "1.6.0"
#####################
#AWS
#####################
primary_region = "eu-west-2"
secondary_region = "eu-west-1"
tertiary_region = "ap-northeast-1"
primary_namespace = "EU-guystack"
secondary_namespace = "DE-guystack"
tertiary_namespace = "AP-guystack"
instance_type_server = "t2.medium"
instance_type_worker = "t2.medium"
public_key = "ssh-rsa AAAAB3NzaC1yc2E"
host_access_ip = ["300.74.72.8/32"]