vars.tf 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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_type" {
  25. type = string
  26. default = "t3a.micro"
  27. }
  28. variable "backup_instance_type" {
  29. type = string
  30. default = "t3a.micro"
  31. }
  32. variable "reverse_enabled" {
  33. description = "Whether to create the reverse DNS entry."
  34. type = bool
  35. default = true
  36. }
  37. variable "trusted_ips" { type = list(string) }
  38. variable "xdr_interconnect" { type = list(string) }
  39. variable "nga_pop" { type = list(string) }
  40. variable "afs_azure_pop" { type = list(string) }
  41. variable "afs_pop" { type = list(string) }
  42. variable "proxy" { type = string }
  43. variable "salt_master" { type = string }
  44. variable "cidr_map" { type = map }
  45. variable "dns_info" { type = map }
  46. variable "standard_tags" { type = map }
  47. variable "environment" { type = string }
  48. variable "aws_region" { type = string }
  49. variable "ses_region" { type = string }
  50. variable "aws_partition" { type = string }
  51. variable "aws_partition_alias" { type = string }
  52. variable "aws_account_id" { type = string }
  53. variable "common_services_account" { type = string }
  54. variable "instance_termination_protection" { type = bool }