File tree Expand file tree Collapse file tree 3 files changed +16
-16
lines changed Expand file tree Collapse file tree 3 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 1
1
variable "workgroup_name" {
2
- description = " (Required) Name of the workgroup"
2
+ description = " (Required) The name of the Athena workgroup that will manage and isolate query execution and resource usage "
3
3
type = string
4
4
}
5
5
6
6
variable "query_results_bucket" {
7
- description = " The S3 bucket where Athena query results will be stored. "
7
+ description = " (Required) The name of the S3 bucket where Athena will store the output of executed queries "
8
8
type = string
9
9
}
10
10
11
11
variable "database_name" {
12
- description = " The name of the Athena database. "
12
+ description = " (Required) The name of the Athena database in the AWS Glue Catalog that will contain the schema definitions for your ALB logs "
13
13
type = string
14
14
}
15
15
16
16
variable "s3_bucket_name" {
17
- description = " The name of the S3 bucket where ALB logs are stored. "
17
+ description = " (Required) The name of the S3 bucket that holds the raw Application Load Balancer (ALB) logs "
18
18
type = string
19
19
}
20
20
21
21
variable "alb_access_logs_table_name" {
22
- description = " The table name for the alb access logs"
22
+ description = " The name of the Glue Catalog table that will store the parsed ALB access logs"
23
23
type = string
24
24
}
25
25
26
26
variable "alb_connection_logs_table_name" {
27
- description = " The table name for the alb connection logs"
27
+ description = " The name of the Glue Catalog table that will store the parsed ALB connection logs"
28
28
type = string
29
29
}
Original file line number Diff line number Diff line change 1
1
variable "workgroup_name" {
2
- description = " (Required) Name of the workgroup"
2
+ description = " (Required) The name of the Athena workgroup that will manage and isolate query execution and resource usage "
3
3
type = string
4
4
}
5
5
6
6
variable "query_results_bucket" {
7
- description = " The S3 bucket where Athena query results will be stored. "
7
+ description = " (Required) The name of the S3 bucket where Athena will store the output of executed queries "
8
8
type = string
9
9
}
10
10
11
11
variable "database_name" {
12
- description = " The name of the Athena database. "
12
+ description = " (Required) The name of the Athena database in the AWS Glue Catalog that will contain the schema definitions for your ALB logs "
13
13
type = string
14
14
}
15
15
16
16
variable "s3_bucket_name" {
17
- description = " The name of the S3 bucket where ALB logs are stored. "
17
+ description = " (Required) The name of the S3 bucket that holds the raw Application Load Balancer (ALB) logs "
18
18
type = string
19
19
}
Original file line number Diff line number Diff line change 1
1
variable "workgroup_name" {
2
- description = " (Required) Name of the workgroup"
2
+ description = " (Required) The name of the Athena workgroup that will manage and isolate query execution and resource usage "
3
3
type = string
4
4
}
5
5
6
6
variable "query_results_bucket" {
7
- description = " The S3 bucket where Athena query results will be stored. "
7
+ description = " (Required) The name of the S3 bucket where Athena will store the output of executed queries "
8
8
type = string
9
9
}
10
10
11
11
variable "database_name" {
12
- description = " The name of the Athena database. "
12
+ description = " (Required) The name of the Athena database in the AWS Glue Catalog that will contain the schema definitions for your ALB logs "
13
13
type = string
14
14
}
15
15
16
16
variable "s3_bucket_name" {
17
- description = " The name of the S3 bucket where ALB logs are stored. "
17
+ description = " (Required) The name of the S3 bucket that holds the raw Application Load Balancer (ALB) logs "
18
18
type = string
19
19
}
20
20
21
21
variable "alb_access_logs_table_name" {
22
- description = " The table name for the alb access logs"
22
+ description = " (Optional) The name of the Glue Catalog table that will store the parsed ALB access logs"
23
23
type = string
24
24
default = " alb_access_logs"
25
25
}
26
26
27
27
variable "alb_connection_logs_table_name" {
28
- description = " The table name for the alb connection logs"
28
+ description = " (Optional) The name of the Glue Catalog table that will store the parsed ALB connection logs"
29
29
type = string
30
30
default = " alb_connection_logs"
31
31
}
You can’t perform that action at this time.
0 commit comments