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/aws_bucket/variables.tf

26 lines
628 B

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
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 "is_user" {
description = "Boolean to specify if a user was provided to this module."
type = bool
default = false
}
variable "user" {
description = "A username that will be allowed access to this module's bucket."
type = string
default = ""
}