vars.tf 889 B

1234567891011121314151617181920212223242526
  1. variable "security_vpc_cidr" {
  2. description = "The CIDR Block for the security VPC"
  3. type = string
  4. }
  5. variable "tags" {
  6. description = "Tags to add to the resource (in addition to global standard tags)"
  7. type = map
  8. default = { }
  9. }
  10. #variable "palo_alto_instance_type" { type = string }
  11. #variable "palo_alto_key_name" { type = string }
  12. # ----------------------------------
  13. # Below this line are variables inherited from higher levels, so they
  14. # do not need to be explicitly passed to this module.
  15. variable "is_legacy" { type = bool }
  16. variable "standard_tags" { type = map }
  17. variable "dns_info" { type = map }
  18. variable "aws_account_id" { type = string }
  19. variable "aws_region" { type = string }
  20. variable "environment" { type = string }
  21. variable "aws_partition" { type = string }
  22. variable "aws_partition_alias" { type = string }
  23. variable "trusted_ips" { type = list }