vars.tf 754 B

1234567891011121314151617181920
  1. variable "tags" {
  2. description = "Tags to add to the resource (in addition to global standard tags)"
  3. type = map
  4. default = { }
  5. }
  6. variable "palo_alto_count" { type = number }
  7. variable "palo_alto_auth_keys" { type = list }
  8. variable "palo_alto_license_keys" { type = list }
  9. variable "aws_partition" { type = string }
  10. variable "panorama_servers" { type = list }
  11. # ----------------------------------
  12. # Below this line are variables inherited from higher levels, so they
  13. # do not need to be explicitly passed to this module.
  14. variable "standard_tags" { type = map }
  15. variable "inside_domain" { type = string }
  16. variable "aws_region" { type = string }
  17. variable "environment" { type = string }
  18. variable "aws_partition_alias" { type = string }