1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- variable "azs" {
- description = "List of AZs for the devices"
- type = list
- }
- variable "panorama_security_group_ids" {
- description = "List of security groups for interfaces."
- type = list
- }
- variable "ebs_key" {
- description = "Key with which to encrypt the panorama ebs"
- type = string
- }
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map
- default = { }
- }
- variable "panorama_count" {
- description = "How many to create, should be divisible by 2 for production"
- type = number
- default = 2
- }
- variable "panorama_instance_type" { type = string }
- variable "panorama_key_name" { type = string }
- variable "instance_termination_protection" { type = bool }
- variable "subnet_id_map" { type = map }
- variable "subnet_cidr_map" { type = map }
- # ----------------------------------
- # 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
- }
|