vars.tf 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. variable "rds_sg" {
  2. description = "Security group of RDS endpoints"
  3. type = string
  4. }
  5. variable "public_subnets" {
  6. type = list(string)
  7. }
  8. variable "private_subnets" {
  9. type = list(string)
  10. }
  11. variable "azs" {
  12. type = list(string)
  13. }
  14. variable "vpc_id" {
  15. type = string
  16. }
  17. variable "tags" {
  18. description = "Tags to add to the resource (in addition to global standard tags)"
  19. type = map
  20. default = { }
  21. }
  22. variable "instance_tags" {
  23. description = "Tags for the instance only."
  24. type = map(string)
  25. default = { }
  26. }
  27. variable "instance_type" {
  28. type = string
  29. default = "t3a.micro"
  30. }
  31. variable "reverse_enabled" {
  32. description = "Whether to create the reverse DNS entry."
  33. type = bool
  34. default = true
  35. }
  36. variable "trusted_ips" { type = list(string) }
  37. variable "admin_ips" { type = list(string) }
  38. variable "zscalar_ips" { type = list(string) }
  39. variable "proxy" { type = string }
  40. variable "salt_master" { type = string }
  41. variable "cidr_map" { type = map }
  42. variable "dns_info" { type = map }
  43. variable "standard_tags" { type = map }
  44. variable "environment" { type = string }
  45. variable "aws_region" { type = string }
  46. variable "ses_region" { type = string }
  47. variable "aws_partition" { type = string }
  48. variable "aws_partition_alias" { type = string }
  49. variable "aws_account_id" { type = string }
  50. variable "common_services_account" { type = string }
  51. variable "instance_termination_protection" { type = bool }