-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
45 lines (38 loc) · 1.05 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
variable "instance_tenancy" {
description = "specify instance tenancy for the vpc"
type = string
default = "default"
}
variable "vpc_cidr_block" {
description = "specify cidr block for the vpc"
type = string
default = "10.0.0.0/16"
}
variable "vpc_name" {
description = "specify name for the vpc"
type = string
default = "my-vpc"
}
variable "public_subnet_cidr_block" {
description = "specify cidr block for subnet"
type = string
default = "10.0.0.0/24"
}
variable "private_subnet_cidr_block" {
description = "specify cidr block for subnet"
type = string
default = "10.0.1.0/24"
}
variable "destination_cidr_block" {
description = "specify cidr block for destination"
type = string
default = "0.0.0.0/0"
}
variable "environment" {
description = "environemnt where the resources are created. eg test/prod"
type = string
}
variable "environemnt_config_variable" {
description = "key value pair containning all configuration for every environment"
type = map
}