forked from hoodbu/ace-iac-day-zero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
executable file
·96 lines (71 loc) · 1.32 KB
/
variables.tf
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
92
93
94
95
96
variable "username" {
default = "admin"
}
variable "password" {
}
variable "controller_ip" {
}
variable "ace_password" {
}
variable "aws_account_name" {
}
variable "aws_transit_instance_size" {
default = "t3.micro"
}
variable "aws_transit1_region" {
default = "us-east-2"
}
variable "aws_transit1_name" {
default = "ace-iac"
}
variable "aws_transit1_cidr" {
default = "10.1.200.0/23"
}
variable "aws_spoke_instance_size" {
default = "t3.micro"
}
variable "aws_spoke1_region" {
default = "us-east-2"
}
variable "aws_spoke1_name" {
default = "ace-iac-spoke1"
}
variable "aws_spoke1_cidr" {
default = "10.1.211.0/24"
}
variable "aws_test_instance_size" {
default = "t2.micro"
}
variable "azure_account_name" {
default = "azure-account"
}
variable "azure_subscription_id" {
}
variable "azure_client_id" {
}
variable "azure_client_secret" {
}
variable "azure_tenant_id" {
}
variable "azure_spoke_instance_size" {
default = "Standard_B1ms"
}
variable "azure_spoke2_region" {
default = "Canada Central"
}
variable "azure_spoke2_name" {
default = "ace-iac-spoke2"
}
variable "azure_spoke2_cidr" {
default = "10.1.212.0/24"
}
variable "azure_test_instance_size" {
default = "Standard_B1ms"
}
variable "ace_ec2_key_name" {
default = "ACE"
}
variable "ha_enabled" {
type = bool
default = false
}