vars.tf 610 B

123456789101112131415161718192021222324
  1. variable "tags" {
  2. description = "Tags to add to the resource (in addition to global standard tags)"
  3. type = map
  4. default = {}
  5. }
  6. variable "standard_tags" {
  7. type = map
  8. default = {}
  9. }
  10. #variable "environment" { type = string }
  11. #variable "aws_partition" { type = string }
  12. #variable "aws_partition_alias" { type = string }
  13. #variable "aws_account_id" { type = string }
  14. variable "name" { type = string }
  15. variable "trusted_arns" { type = list(string) }
  16. variable "description" { type = string }
  17. variable "bucket" { type = string }
  18. variable "kms_key_ids" {
  19. type = list(string)
  20. default = []
  21. }