vars.tf 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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_type" {
  23. type = string
  24. default = "t3a.micro"
  25. }
  26. variable "reverse_enabled" {
  27. description = "Whether to create the reverse DNS entry."
  28. type = bool
  29. default = true
  30. }
  31. variable "trusted_ips" { type = list(string) }
  32. variable "proxy" { type = string }
  33. variable "salt_master" { type = string }
  34. variable "cidr_map" { type = map }
  35. variable "dns_info" { type = map }
  36. variable "standard_tags" { type = map }
  37. variable "environment" { type = string }
  38. variable "aws_region" { type = string }
  39. variable "ses_region" { type = string }
  40. variable "aws_partition" { type = string }
  41. variable "aws_partition_alias" { type = string }
  42. variable "aws_account_id" { type = string }
  43. variable "common_services_account" { type = string }
  44. variable "instance_termination_protection" { type = bool }