vars.tf 516 B

1234567891011121314
  1. variable "tags" {
  2. description = "Tags for the bucket and kms key."
  3. type = map(any)
  4. }
  5. # ----------------------------------
  6. # Below this line are variables inherited from higher levels, so they
  7. # do not need to be explicitly passed to this module.
  8. variable "standard_tags" { type = map(any) }
  9. variable "aws_account_id" { type = string }
  10. variable "account_list" { type = list(any) }
  11. variable "aws_region" { type = string }
  12. variable "aws_partition" { type = string }
  13. variable "environment" { type = string }