-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
35 lines (34 loc) · 1012 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
variable "database_name" {
description = "The name of the database to be created."
type = string
}
variable "s3_bucket_name" {
description = "The name of the S3 log bucket."
type = string
}
variable "cloudfront_logs_table_name" {
default = "cloudfront_logs"
description = "The name of the table to be created."
type = string
}
variable "cloudfront_access_log_prefix" {
description = "The S3 log bucket prefix for the logs."
type = string
}
variable "queries" {
type = list(object({
name = string
query = string
}))
default = []
description = "The list of queries need to be saved in the athena query service."
}
variable "create_database" {
type = bool
default = true
description = "Variable that decides the database creation. If false is passed, it will just use the database that is available already. If true is passed, it will create a new database."
}
variable "env" {
type = string
description = "Environment"
}