-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
51 lines (50 loc) · 1.36 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
#Define AWS Region
variable "region" {
description = "Infrastructure region."
type = string
default = "us-east-2"
}
#Define IAM User Access Key
variable "access_key" {
description = "The access_key that belongs to the IAM user."
type = string
sensitive = true
default = ""
}
#Define IAM User Secret Key
variable "secret_key" {
description = "The secret_key that belongs to the IAM user."
type = string
sensitive = true
default = ""
}
variable "name" {
description = "The name of the application."
type = string
default = "app-6"
}
variable "vpc_cidr" {
description = "The CIDR of the VPC."
type = string
default = "11.90.30.0/25"
}
variable "subnet_cidr_public" {
description = "The CIDR blocks for the public subnets."
type = list(any)
default = ["11.90.30.0/27", "11.90.30.32/27"]
}
variable "subnet_cidr_private" {
description = "The CIDR blocks for the private subnets."
type = list(any)
default = ["11.90.30.64/27", "11.90.30.96/27"]
}
variable "availability_zone" {
description = "The availability zones for teh public subnets."
type = list(any)
default = ["us-east-2a", "us-east-2b", "us-east-2c"]
}
variable "ecs_secret" {
description = "The secret accessed from the AWS Fargate task containers."
type = string
sensitive = true
}