vars.tf 376 B

123456789101112131415
  1. variable "tags" {
  2. description = "Tags to add to the resource (in addition to global standard tags)"
  3. type = map(any)
  4. default = {}
  5. }
  6. variable "name" { type = string }
  7. variable "trusted_arns" { type = list(string) }
  8. variable "description" { type = string }
  9. variable "bucket" { type = string }
  10. variable "kms_key_ids" {
  11. type = list(string)
  12. default = []
  13. }