vars.tf 1.2 KB

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