-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
117 lines (96 loc) · 2.37 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# environment variables
variable "region" {
description = "region to create resources"
type = string
}
variable "project_name" {
description = "Project name"
type = string
}
variable "environment" {
description = "environment"
type = string
}
# vpc variables
variable "vpc_cidr" {
description = "vpc cidr block"
type = string
}
variable "pub_eligant_subnet_az1_cidr" {
description = "public eligant subnet az1 cidr block"
type = string
}
variable "pub_eligant_subnet_az2_cidr" {
description = "public eligant subnet az2 cidr block"
type = string
}
variable "private_eligantapp_subnet_az1_cidr" {
description = "private eligant App subnet az1 cidr block"
type = string
}
variable "private_eligantapp_subnet_az2_cidr" {
description = "private eligant App subnet az2 cidr block"
type = string
}
variable "private_eligantdata_subnet_az1_cidr" {
description = "private eligant Database subnet az1 cidr block"
type = string
}
variable "private_eligantdata_subnet_az2_cidr" {
description = "private eligant Database subnet az2 cidr block"
type = string
}
# Security groups variables
variable "ssh_location" {
description = "ip that can ssh into the server"
type = string
}
# rds varaiables
variable "database_snapshot_identifier" {
description = "database snap shot"
type = string
}
variable "database_instance_class" {
description = "database instance type"
type = string
}
variable "database_instance_identifier" {
description = "database instance identifier"
type = string
}
variable "multi_az_deployment" {
description = "create a standby db instance"
type = bool
}
# acm variables
variable "domain_name" {
description = "domain name"
type = string
}
variable "subject_alternative_names" {
description = "sub domain names"
type = string
}
# S3 variables
variable "env_file_bucket_name" {
description = "s3 bucket name"
type = string
}
variable "env_file_name" {
description = "env file name"
type = string
}
# ecs variables
variable "architecture" {
description = "ecs cpu architecture"
type = string
}
variable "container_image" {
description = "container image uri"
type = string
}
# route53 variables
variable "record_name" {
description = "sub domain name"
type = string
}