vars.tf 1.5 KB

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