Skip to content

Commit

Permalink
add tags
Browse files Browse the repository at this point in the history
  • Loading branch information
Don Badrak committed Jun 22, 2020
1 parent 68dfcc6 commit 6bad39b
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
variable "bucket_name" {
description = "AWS Bucket Name"
type = string
type = string
}

variable "bucket_folders" {
description = "List of folders (keys) to create after creation of bucket"
type = list(string)
default = [ ]
type = list(string)
default = []
}

variable "kms_key_id" {
description = "AWS KMS Key ID (one per bucket)"
type = string
default = ""
type = string
default = ""
}

variable "tags" {
description = "AWS Tags"
type = map(string)
default = { }
}

0 comments on commit 6bad39b

Please sign in to comment.