-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
31 lines (26 loc) · 1.11 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
variable "workgroup_name" {
description = "(Required) The name of the Athena workgroup that will manage and isolate query execution and resource usage"
type = string
}
variable "query_results_bucket" {
description = "(Required) The name of the S3 bucket where Athena will store the output of executed queries"
type = string
}
variable "database_name" {
description = "(Required) The name of the Athena database in the AWS Glue Catalog that will contain the schema definitions for your ALB logs"
type = string
}
variable "s3_bucket_name" {
description = "(Required) The name of the S3 bucket that holds the raw Application Load Balancer (ALB) logs"
type = string
}
variable "alb_access_logs_table_name" {
description = "(Optional) The name of the Glue Catalog table that will store the parsed ALB access logs"
type = string
default = "alb_access_logs"
}
variable "alb_connection_logs_table_name" {
description = "(Optional) The name of the Glue Catalog table that will store the parsed ALB connection logs"
type = string
default = "alb_connection_logs"
}