vars.tf 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. variable "vmray_worker_instance_count" {
  2. description = "How many workers to build. These are expensive."
  3. type = number
  4. }
  5. variable "tags" {
  6. description = "Tags to add to the resource (in addition to global standard tags)"
  7. type = map
  8. default = { }
  9. }
  10. variable "instance_types" { type = map }
  11. variable "instance_termination_protection" { type = bool }
  12. variable "standard_tags" { type = map }
  13. variable "dns_info" { type = map }
  14. variable "environment" { type = string }
  15. variable "portal_test_whitelist" { type = list }
  16. variable "trusted_ips" { type = list(string) }
  17. variable "proxy" { type = string }
  18. variable "salt_master" { type = string }
  19. variable "cidr_map" { type = map }
  20. variable "aws_region" { type = string }
  21. variable "aws_partition" { type = string }
  22. variable "aws_partition_alias" { type = string }
  23. variable "aws_account_id" { type = string }
  24. variable "vpc_id" { type = string }
  25. variable "azs" { type = list(string) }
  26. variable "public_subnets" { type = list(string) }
  27. variable "private_subnets" { type = list(string) }
  28. variable "common_services_account" { type = string }
  29. variable "c2_accounts" { type = map }