-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvariables.tf
44 lines (38 loc) · 987 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
44
variable "aws_region" {
description = "Region to deploy to"
type = string
default = "eu-west-3"
}
variable "prefix" {
description = "A prefix appended to each resource"
type = string
default = "devops-challenge"
}
variable "default_tags" {
description = "Default tags to apply to resources"
type = map(string)
default = {
app = "devops-challenge"
}
}
variable "env" {
description = "Name of the environment"
type = string
default = "dev"
}
variable "ovh_domain_conf" {
description = "OVH DNS zone configuration if you want to use a custom domain."
type = object({
dns_zone_name = string
subdomain = optional(string, "")
})
default = {
dns_zone_name = ""
subdomain = ""
}
}
variable "invalid_cache" {
description = "Flag indicating if we should invalidate the CloudFront Cache after each deployment of the files to the S3 bucket."
type = bool
default = false
}