-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
36 lines (30 loc) · 788 Bytes
/
variables.tf
File metadata and controls
36 lines (30 loc) · 788 Bytes
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
variable "lambda_version" {
description = "Version of the Lambda to use"
type = string
default = "v0.2.0"
}
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 "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 "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
}