-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
27 lines (23 loc) · 865 Bytes
/
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
variable "team_name" {
description = "Required variable used for tagging, naming and isolating teams"
default = "merlion"
}
variable "environment" {
description = "Required variable for isolating environments"
default = "dev"
}
variable "enable_vpc_lattice_service_demo" {
type = bool
default = false
description = "This feature toggle demonstrates Lattice Service features"
}
variable "enable_vpc_lattice_rds_resource_gw_demo" {
type = bool
default = false
description = "This feature toggle demonstrates Lattice Resource Gateway with RDS feature."
}
variable "enable_service_connect_demo" {
type = bool
default = false
description = "This feature toggle demonstrates service_connect feature by deploying hello-world-v1-svc in same subnet as demo-svc. To showcase the connectivity between these 2 services."
}