vars.tf 1.1 KB

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