Skip to content

Commit

Permalink
[DPR2-1576] Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
stalwartstu committed Jan 6, 2025
1 parent 6f7ac6f commit 5a14c3b
Showing 1 changed file with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

variable "name" {
description = "Name of the Bucket"
type = string
default = ""
}

Expand Down Expand Up @@ -29,6 +30,7 @@ variable "s3_notification_name" {

variable "create_s3" {
description = "Setup S3 Buckets"
type = bool
default = false
}

Expand All @@ -40,45 +42,46 @@ variable "custom_kms_key" {

variable "create_notification_queue" {
description = "Setup Notification Queue"
type = bool
default = false
}

variable "sqs_msg_retention_seconds" {
description = "SQS Message Retention"
type = number
default = 86400
}

variable "filter_prefix" {
description = "S3 Notification Filter Prefix"
type = string
default = null
}

variable "enable_lifecycle" {
description = "Enabled Lifecycle for S3 Storage, Default is False"
type = bool
default = false
}

variable "enable_versioning_config" {
description = "Enable Versioning Config for S3 Storage, Default is Disabled"
type = string
default = "Disabled"
}

variable "enable_s3_versioning" {
description = "Enable Versioning for S3 Bucket, Default is false"
type = bool
default = false
}

variable "enable_notification" {
description = "Enable S3 Bucket Notifications, Default is false"
type = bool
default = false
}

#variable "bucket_notifications" {
# type = map(any)
# description = "AWS S3 Bucket Notifications"
# default = null
#}

variable "bucket_notifications" {
type = any
description = "AWS S3 Bucket Notifications"
Expand All @@ -97,6 +100,7 @@ variable "dependency_lambda" {

variable "bucket_key" {
description = "If Bucket Key is Enabled or Disabled"
type = bool
default = true
}

Expand Down

0 comments on commit 5a14c3b

Please sign in to comment.