vars.tf 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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_remote_ipset" {
  18. type = list(object(
  19. {
  20. value = string
  21. type = string
  22. }))
  23. }
  24. variable "instance_name" {
  25. description = "Hostname, DNS entry, etc."
  26. type = string
  27. }
  28. variable "instance_type" {
  29. type = string
  30. default = "t3a.micro"
  31. }
  32. variable "vpc_id" {
  33. type = string
  34. }
  35. variable "private_subnets" {
  36. type = list(string)
  37. }
  38. variable "public_subnets" {
  39. type = list(string)
  40. }
  41. variable "proxy_public_ip" {
  42. type = string
  43. }