-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f1cf116
commit 0520bb8
Showing
3 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
variable "workgroup_name" { | ||
description = "(Required) Name of the workgroup" | ||
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 = "The S3 bucket where Athena query results will be stored." | ||
description = "(Required) The name of the S3 bucket where Athena will store the output of executed queries" | ||
type = string | ||
} | ||
|
||
variable "database_name" { | ||
description = "The name of the Athena database." | ||
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 = "The name of the S3 bucket where ALB logs are stored." | ||
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 = "The table name for the alb access logs" | ||
description = "The name of the Glue Catalog table that will store the parsed ALB access logs" | ||
type = string | ||
} | ||
|
||
variable "alb_connection_logs_table_name" { | ||
description = "The table name for the alb connection logs" | ||
description = "The name of the Glue Catalog table that will store the parsed ALB connection logs" | ||
type = string | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
variable "workgroup_name" { | ||
description = "(Required) Name of the workgroup" | ||
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 = "The S3 bucket where Athena query results will be stored." | ||
description = "(Required) The name of the S3 bucket where Athena will store the output of executed queries" | ||
type = string | ||
} | ||
|
||
variable "database_name" { | ||
description = "The name of the Athena database." | ||
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 = "The name of the S3 bucket where ALB logs are stored." | ||
description = "(Required) The name of the S3 bucket that holds the raw Application Load Balancer (ALB) logs" | ||
type = string | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
variable "workgroup_name" { | ||
description = "(Required) Name of the workgroup" | ||
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 = "The S3 bucket where Athena query results will be stored." | ||
description = "(Required) The name of the S3 bucket where Athena will store the output of executed queries" | ||
type = string | ||
} | ||
|
||
variable "database_name" { | ||
description = "The name of the Athena database." | ||
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 = "The name of the S3 bucket where ALB logs are stored." | ||
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 = "The table name for the alb access logs" | ||
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 = "The table name for the alb connection logs" | ||
description = "(Optional) The name of the Glue Catalog table that will store the parsed ALB connection logs" | ||
type = string | ||
default = "alb_connection_logs" | ||
} |