-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
43 lines (37 loc) · 861 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
variable "aws_region" {
type = string
default = "eu-west-3"
description = "AWS region"
}
variable "ecr_values" {
type = any
default = {}
description = "AWS ECR configuration"
}
variable "ecs_values" {
type = any
default = {}
description = "AWS ECS configuration"
}
variable "lb_values" {
type = any
default = {}
description = "AWS Load Balancer configuration"
}
variable "networking" {
type = object({
vpc_id = string
subnet_ids = list(string)
})
description = "AWS networking configuration (subnet_ids, vpc_id)"
}
variable "container" {
type = any
default = {}
description = "Container configuration to deploy"
}
variable "addons" {
type = any
default = {}
description = "Configuration of each addon that can be toggles on and off"
}