vars.tf 540 B

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