-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
46 lines (38 loc) · 897 Bytes
/
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
42
43
44
45
46
variable "ise_username" {
type = string
}
variable "ise_password" {
type = string
}
variable "ise_deployment" {
type = string
validation {
condition = var.ise_deployment == "small_deployment" || var.ise_deployment == "medium_deployment" || var.ise_deployment == "large_deployment"
error_message = "The ise_deployment value must be a some of values : (single_node, small_deployment, medium_deployment, large_deployment)."
}
description = "ISE Type Deployment, it should be one of: (small_deployment, medium_deployment, large_deployment)."
}
variable "ise_base_hostname" {
type = string
}
variable "ise_domain" {
type = string
}
variable "pan1_ip" {
type = string
}
variable "pan2_ip" {
type = string
}
variable "psn1_ip" {
type = string
}
variable "psn2_ip" {
type = string
}
variable "mnt1_ip" {
type = string
}
variable "mnt2_ip" {
type = string
}