vars.tf 855 B

1234567891011121314151617181920212223
  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_instance_type" { type = string }
  7. #variable "palo_alto_key_name" { type = string }
  8. # ----------------------------------
  9. # Below this line are variables inherited from higher levels, so they
  10. # do not need to be explicitly passed to this module.
  11. variable "vpc_info" { type = map }
  12. variable "is_legacy" { type = bool }
  13. variable "standard_tags" { type = map }
  14. variable "dns_info" { type = map }
  15. variable "aws_account_id" { type = string }
  16. variable "aws_region" { type = string }
  17. variable "environment" { type = string }
  18. variable "account_name" { type = string }
  19. variable "aws_partition" { type = string }
  20. variable "aws_partition_alias" { type = string }
  21. variable "trusted_ips" { type = list }