forked from codygreen/terraform-aws-bigip-demo
-
Notifications
You must be signed in to change notification settings - Fork 14
/
variables.tf
68 lines (56 loc) · 1.12 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
variable "prefix" {
default = "tf-aws-bigip"
}
## Europe Regions need oder Jumphost and BigIP Instance Typs1
## Uncomment needed region below
# US (Oregon)
variable "region" {
default = "us-west-2"
}
variable "azs" {
default = ["us-west-2a", "us-west-2b"]
}
variable "ec2_bigip_type" {
default = "c4.xlarge"
}
variable "ec2_ubuntu_type" {
default = "t2.xlarge"
}
## Europe (Stockholm)
# variable "region" {
# default = "eu-north-1"
# }
#
# variable "azs" {
# default = ["eu-north-1a", "eu-north-1b"]
# }
#
# variable "ec2_bigip_type" {
# default = "c5.xlarge"
# }
# variable "ec2_ubuntu_type" {
# default = "t3.xlarge"
# }
variable "cidr" {
description = "addresses for the virtual network"
default = "10.0.0.0/16"
}
variable "allowed_mgmt_cidr" {
description = "list of source addresses allowed access to the BIG-IP management port"
}
variable "allowed_app_cidr" {
default = "0.0.0.0/0"
}
variable "management_subnet_offset" {
default = 10
}
variable "external_subnet_offset" {
default = 0
}
variable "internal_subnet_offset" {
default = 20
}
variable "ec2_key_name" {
}
variable "ec2_key_file" {
}