forked from f5devcentral/terraform-aws-bigip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
117 lines (99 loc) · 3.67 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
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
}
variable "application_endpoint_count" {
description = "number of public application addresses to assign"
type = number
default = 2
}
variable "ec2_instance_type" {
description = "AWS EC2 instance type"
type = string
default = "m4.large"
}
variable "ec2_key_name" {
description = "AWS EC2 Key name for SSH access"
type = string
}
variable "vpc_public_subnet_ids" {
description = "AWS VPC Subnet id for the public subnet"
type = list
default = []
}
variable "vpc_private_subnet_ids" {
description = "AWS VPC Subnet id for the private subnet"
type = list
default = []
}
variable "vpc_mgmt_subnet_ids" {
description = "AWS VPC Subnet id for the management subnet"
type = list
default = []
}
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 = []
}
variable "aws_secretmanager_secret_id" {
description = "AWS Secret Manager Secret ID that stores the BIG-IP password"
type = string
}
## 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.8.0/f5-declarative-onboarding-1.8.0-2.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"
}
## Please check and update the latest TS URL from https://github.com/F5Networks/f5-telemetry-streaming/releases/latest
# always point to a specific version in order to avoid inadvertent configuration inconsistency
variable TS_URL {
description = "URL to download the BIG-IP Telemetry Streaming Extension (TS) module"
type = string
default = "https://github.com/F5Networks/f5-telemetry-streaming/releases/download/v1.8.0/f5-telemetry-1.8.0-1.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"
}