-
Notifications
You must be signed in to change notification settings - Fork 6
/
vars.tf
50 lines (40 loc) · 1.05 KB
/
vars.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
47
48
49
50
variable "bigiq_ami" {
description = "BigIQ ami to launch"
}
variable "bigiqLicenseManager" {
description = "Management IP address of the BigIQ License Manager"
}
variable "bigiqLicensePoolName" {
description = "BigIQ License Pool name"
}
variable "server_port" {
description = "The port the server will use for HTTP requests"
}
variable "aws_keypair" {
description = "The name of an existing key pair. In AWS Console: NETWORK & SECURITY -> Key Pairs"
}
/*
variable "licenseKey1" {
description = "license key 1"
}
variable "licenseKey2" {
description = "license key 2"
}
variable "bigiqLicense" {
description = "BigIQ base license key"
}
*/
variable "emailid" {
description = "emailid"
}
variable "emailidsan" {
description = "emailidsan"
}
variable "restrictedSrcAddress" {
type = "list"
description = "Lock down management access by source IP address or network"
default = ["0.0.0.0/0", "10.0.0.0/16"]
}
variable "aws_alias" {
description = "Link alias to AWS Console"
}