vars.tf 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. variable "tags" { type = map }
  2. variable "dns_info" { type = map }
  3. variable "cidr_map" { type = map }
  4. variable "instance_termination_protection" { type = bool }
  5. variable "standard_tags" { type = map }
  6. variable "environment" { type = string }
  7. variable "trusted_ips" { type = list }
  8. variable "aws_region" { type = string }
  9. variable "aws_partition" { type = string }
  10. variable "aws_partition_alias" { type = string }
  11. variable "aws_account_id" { type = string }
  12. variable "common_services_account" { type = string }
  13. variable "proxy" { type = string }
  14. variable "salt_master" { type = string }
  15. variable "portal_test_whitelist" { type = list }
  16. variable "nat_public_ips" { type = list }
  17. variable "admin_ips" { type = list(string) }
  18. variable "zscalar_ips" { type = list(string) }
  19. variable "instance_name" {
  20. description = "Hostname, DNS entry, etc."
  21. type = string
  22. }
  23. variable "instance_type" {
  24. type = string
  25. default = "t3a.micro"
  26. }
  27. variable "vpc_id" {
  28. type = string
  29. }
  30. variable "private_subnets" {
  31. type = list(string)
  32. }
  33. variable "public_subnets" {
  34. type = list(string)
  35. }
  36. variable "proxy_public_ip" {
  37. type = string
  38. }
  39. variable "instance_tags" {
  40. description = "Tags for the instance only."
  41. type = map(string)
  42. default = { }
  43. }