vars.tf 889 B

12345678910111213141516171819202122232425
  1. variable "tags" {
  2. type = map
  3. default = { }
  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 "account_name" { type = string }
  9. variable "binaries_bucket" { type = string}
  10. variable "binaries_key" { type = string}
  11. variable "is_legacy" { type = bool }
  12. variable "legacy_account" { type = string }
  13. variable "common_services_account" { type = string }
  14. variable "standard_tags" { type = map }
  15. variable "account_list" { type = list }
  16. variable "aws_account_id" { type = string }
  17. variable "aws_partition" { type = string }
  18. variable "aws_region" { type = string }
  19. variable "environment" { type = string }
  20. variable "key_pairs" { type = map }
  21. variable "c2_accounts" { type = map }
  22. variable "aws_flowlogs_hec_token" { type = string }
  23. variable "hec_pub_ack" { type = string }