You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/enos/modules/bucket/variables.tf

19 lines
465 B

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
variable "common_tags" {
description = "A map of tags to set for the S3 bucket."
type = map(string)
default = { "Project" : "Enos" }
}
variable "cluster_tag" {
description = "The cluster_tag from the Boundary cluster module."
type = string
}
variable "user" {
description = "A username that will be allowed access to this module's bucket."
type = string
}