-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariables.tf
More file actions
91 lines (72 loc) · 2.31 KB
/
Copy pathvariables.tf
File metadata and controls
91 lines (72 loc) · 2.31 KB
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
84
85
86
87
88
89
90
91
variable "tfc_state_org" {
description = "TFC Organization where to access remote_state from"
default = "JoeStack"
}
variable "rs_platform_hcp" {
description = "TFC Workspace where to consume outputs from (cluster_url)"
default = "boundary-webinar_platform-hcp"
}
variable "boundary_global_username" {
description = "Root credential to access Boundary UI and/or Terraform (global scope)"
}
variable "boundary_global_password" {
description = "Root credential to access Boundary UI and/or Terraform (global scope) "
}
variable "boundary_project_username" {
description = "project scope credential"
}
variable "boundary_project_password" {
description = "Project scope credential"
}
variable "vault_adm_user" {
description = "Additinal non-root Username to access Vault with Username/Password"
}
variable "vault_adm_password" {
description = "non-root Password to access Vault"
}
variable "aws_region" {
description = "AWS region"
default = "us-east-1"
}
variable "name" {
description = "Unique name of the deployment"
}
variable "instance_type" {
description = "instance size to be used for worker nodes"
default = "t2.small"
}
variable "ssh_user" {
description = "default ssh user to get access to an instance."
default = "ubuntu"
}
variable "pub_key" {
description = "the name of the public key that is already uploaded into your specific AWS region to be used to access the bastion host and worker nodes"
default = "joestack"
}
variable "pri_key" {
description = "the base64 encoded private part of the pub_key to be used to access the worker nodes from the bastion host (the same key that you use to access the bastion host). "
}
variable "web_node_count" {
description = "number of workers (web-nodes)"
default = "5"
}
variable "db_node_count" {
description = "number of worker (db-nodes)"
default = "5"
}
variable "web_subnet_count" {
description = "number of subnets to be used for worker nodes"
default = "2"
}
variable "network_address_space" {
description = "CIDR for this deployment"
default = "192.168.0.0/16"
}
variable "mysql_user" {
description = "Username to be used to access the mysql DB"
default = "boundary"
}
variable "mysql_password" {
description = "Password to be used to access the mysql DB"
default = "boundary1234!"
}