vars.tf 697 B

12345678910111213141516171819202122232425
  1. variable "has_cust_sh" {
  2. description = "True if there is a customer search head."
  3. type = bool
  4. default = false
  5. }
  6. variable "splunk_prefix" {
  7. type = string
  8. }
  9. variable "tags" {
  10. description = "Tags for the bucket and kms key."
  11. type = map
  12. }
  13. # ----------------------------------
  14. # Below this line are variables inherited from higher levels, so they
  15. # do not need to be explicitly passed to this module.
  16. variable "standard_tags" { type = map }
  17. variable "aws_account_id" { type = string }
  18. variable "account_list" { type = list }
  19. variable "aws_region" { type = string }
  20. variable "aws_partition" { type = string }
  21. variable "environment" { type = string }
  22. variable "c2_accounts" { type = map }