forked from PaloAltoNetworks/terraform-panos-dag-nia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
41 lines (37 loc) · 1.08 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
variable "services" {
description = "Consul services monitored by Consul NIA"
type = map(
object({
id = string
name = string
address = string
port = number
status = string
meta = map(string)
tags = list(string)
namespace = string
node = string
node_id = string
node_address = string
node_datacenter = string
node_tagged_addresses = map(string)
node_meta = map(string)
})
)
}
variable "vsys_name" {
# https://docs.paloaltonetworks.com/pan-os/9-0/pan-os-web-interface-help/device/device-virtual-systems.html
description = "The name of the virtual system"
type = string
default = "vsys1"
}
variable "dag_prefix" {
type = string
description = "(Optional) Prefix added to the dynamic address group created by Consul"
default = ""
}
variable "dag_suffix" {
type = string
description = "(Optional) Suffix added to the dynamic address group created by Consul"
default = ""
}