123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- variable "azs" {
- description = "List of AZs for the palo altos"
- type = list
- }
- variable "management_security_group_ids" {
- description = "List of security groups for PA interfaces."
- type = list
- }
- variable "untrusted_security_group_ids" {
- description = "List of security groups for PA interfaces."
- type = list
- }
- variable "palo_alto_count" {
- description = "How many to create, should be divisible by 2 for production"
- type = number
- default = 2
- }
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map
- default = { }
- }
- variable "palo_alto_instance_type" { type = string }
- variable "palo_alto_key_name" { type = string }
- variable "instance_termination_protection" { type = bool }
- variable "subnet_id_map" { type = map }
- variable "subnet_cidr_map" { type = map }
- variable "bucket_ids" { type = list }
- variable "instance_profile_names" { type = list }
- # ----------------------------------
- # Below this line are variables inherited from higher levels, so they
- # do not need to be explicitly passed to this module.
- variable "standard_tags" {
- type = map
- }
- variable "inside_domain" {
- type = string
- }
- variable "aws_region" {
- type = string
- }
- variable "environment" {
- type = string
- }
- variable "aws_partition_alias" {
- type = string
- }
|