-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
39 lines (34 loc) · 881 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
variable "route53_domain" {
description = "Domain name registered in Route53"
type = string
default = ""
}
variable "app_sub_domain" {
description = "Subdomain for the application"
type = string
default = "example-api"
}
variable "app_port" {
description = "Port the application is listening on"
type = number
default = 8080
}
variable "app_repository" {
description = "ECR repository name"
type = string
default = "example-api"
}
variable "app_image_tag" {
description = "ECR image tag"
type = string
default = "latest"
}
variable "app_environment_variables" {
description = "Environment variables for the application"
type = list(object({
name = string
value = string
description = string
}))
default = []
}