2021-07-22 15:09:25 +02:00

18 lines
453 B
HCL

variable "namespace" {
description = "The project namespace to use for unique resource naming"
default = "s3backend"
type = string
}
variable "principle_arns" {
description = "A list of peincipal arns allowed to assume the IAM role"
default = null
type = list(string)
}
variable "force_destroy_state" {
description = "Force destroy the s3 bucket containing state files?"
default = true
type = bool
}