forked from vbojko/marfil-f5-terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.tf
59 lines (48 loc) · 1.29 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
51
52
53
54
55
56
57
58
59
/*
variable "web_server_ami" {
description = "web server ami is region specific, defaults to us-east-1"
default = "ami-40d28157"
}
*/
variable "web_server_ami" {
type = "map"
default = {
"us-east-1" = "ami-a4c7edb2"
"ap-southeast-1" = "ami-77af2014"
}
}
variable "aws_region" {
description = "aws region (default is us-east-1)"
default = "us-east-1"
}
variable "bigiqLicenseManager" {
description = "Management IP address of the BigIQ License Manager"
default = "null"
}
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 "emailid" {
description = "emailid"
}
variable "waf_emailid" {
description = "waf email notification"
default = ""
}
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"
}