-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
100 lines (85 loc) · 3.03 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
variable "prefix" {
description = "Prefix for resources created by this module"
type = string
default = "terraform-aws-bigip-demo"
}
variable "f5_ami_search_name" {
description = "BIG-IP AMI name to search for"
type = string
default = "F5 Networks BIGIP-14.* PAYG - Best 200Mbps*"
}
variable "f5_instance_count" {
description = "Number of BIG-IPs to deploy"
type = number
default = 1
}
# REPLACE WITH AZURE ANALOG
# variable "ec2_instance_type" {
# description = "AWS EC2 instance type"
# type = string
# default = "m5.large"
# }
# variable "ec2_key_name" {
# description = "AWS EC2 Key name for SSH access"
# type = string
# }
variable "vpc_public_subnet_ids" {
description = "Azure VPC Subnet id for the public subnet"
type = list
default = []
}
variable "vpc_private_subnet_ids" {
description = "Azure VPC Subnet id for the private subnet"
type = list
default = []
}
variable "vpc_mgmt_subnet_ids" {
description = "Azure VPC Subnet id for the management subnet"
type = list
default = []
}
# REPLACE WITH AZURE ANALOG
# variable "mgmt_eip" {
# description = "Enable an Elastic IP address on the management interface"
# type = bool
# default = true
# }
# variable "mgmt_subnet_security_group_ids" {
# description = "AWS Security Group ID for BIG-IP management interface"
# type = list
# default = []
# }
# variable "public_subnet_security_group_ids" {
# description = "AWS Security Group ID for BIG-IP public interface"
# type = list
# default = []
# }
# variable "private_subnet_security_group_ids" {
# description = "AWS Security Group ID for BIG-IP private interface"
# type = list
# default = []
# }
## Please check and update the latest DO URL from https://github.com/F5Networks/f5-declarative-onboarding/releases
# always point to a specific version in order to avoid inadvertent configuration inconsistency
variable DO_URL {
description = "URL to download the BIG-IP Declarative Onboarding module"
type = string
default = "https://github.com/F5Networks/f5-declarative-onboarding/releases/download/v1.7.0/f5-declarative-onboarding-1.7.0-3.noarch.rpm"
}
## Please check and update the latest AS3 URL from https://github.com/F5Networks/f5-appsvcs-extension/releases/latest
# always point to a specific version in order to avoid inadvertent configuration inconsistency
variable AS3_URL {
description = "URL to download the BIG-IP Application Service Extension 3 (AS3) module"
type = string
default = "https://github.com/F5Networks/f5-appsvcs-extension/releases/download/v3.14.0/f5-appsvcs-3.14.0-4.noarch.rpm"
}
variable "libs_dir" {
description = "Directory on the BIG-IP to download the A&O Toolchain into"
type = string
default = "/config/cloud/aws/node_modules"
}
variable onboard_log {
description = "Directory on the BIG-IP to store the cloud-init logs"
type = string
default = "/var/log/startup-script.log"
}