-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
52 lines (43 loc) · 1.13 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
46
47
48
49
50
51
52
variable "lambda_version" {
description = "Version of the Lambda to use"
type = string
default = "v0.2.1"
}
variable "logging_bucket" {
description = "S3 bucket to use for bucket logging"
type = string
}
variable "config_bucket" {
description = "S3 bucket to use for configuration"
type = string
}
variable "auth_config_bucket" {
description = "S3 bucket to use for auth configuration"
type = string
}
variable "data_bucket" {
description = "S3 bucket from which to read data"
type = string
}
variable "lambda_bucket" {
description = "S3 bucket from which to read the Lambda ZIP"
type = string
}
variable "auth_lambda_bucket" {
description = "S3 bucket from which to read the auth Lambda ZIP"
type = string
}
variable "auth_lambda_version" {
description = "Version of the Lambda to use"
type = string
default = "v0.1.0"
}
variable "hostname" {
description = "Hostname to use for the site"
type = string
}
variable "cloudwatch_retention_in_days" {
description = "Days to retain cloudwatch logs"
type = number
default = 30
}