vars.tf 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. variable "azs" {
  2. description = "List of AZs for the palo altos"
  3. type = list
  4. }
  5. variable "management_security_group_ids" {
  6. description = "List of security groups for PA interfaces."
  7. type = list
  8. }
  9. variable "untrusted_security_group_ids" {
  10. description = "List of security groups for PA interfaces."
  11. type = list
  12. }
  13. variable "palo_alto_count" {
  14. description = "How many to create, should be divisible by 2 for production"
  15. type = number
  16. default = 2
  17. }
  18. variable "tags" {
  19. description = "Tags to add to the resource (in addition to global standard tags)"
  20. type = map
  21. default = { }
  22. }
  23. variable "palo_alto_instance_type" { type = string }
  24. variable "palo_alto_key_name" { type = string }
  25. variable "instance_termination_protection" { type = bool }
  26. variable "subnet_id_map" { type = map }
  27. variable "subnet_cidr_map" { type = map }
  28. variable "bucket_ids" { type = list }
  29. variable "instance_profile_names" { type = list }
  30. # ----------------------------------
  31. # Below this line are variables inherited from higher levels, so they
  32. # do not need to be explicitly passed to this module.
  33. variable "standard_tags" {
  34. type = map
  35. }
  36. variable "inside_domain" {
  37. type = string
  38. }
  39. variable "aws_region" {
  40. type = string
  41. }
  42. variable "environment" {
  43. type = string
  44. }
  45. variable "aws_partition_alias" {
  46. type = string
  47. }