Skip to content

Commit

Permalink
fix: enhance variable descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Rahul-4480 committed Aug 22, 2024
1 parent f1cf116 commit 0520bb8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions examples/complete/variables.tf
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
}
8 changes: 4 additions & 4 deletions examples/minimal/variables.tf
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
}
12 changes: 6 additions & 6 deletions variables.tf
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"
}

0 comments on commit 0520bb8

Please sign in to comment.