vars.tf 1.1 KB

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