-
Notifications
You must be signed in to change notification settings - Fork 15
/
variables.tf
80 lines (71 loc) · 2.99 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
# must select a region that supports availability zones
# https://docs.microsoft.com/en-us/azure/availability-zones/az-overview
variable "region" {
default = "westus2"
}
variable "azs" {
default = ["1","3"]
}
variable "cidr" {
default = "10.0.0.0/16"
}
variable "allowed_mgmt_cidr" {
default = "127.0.0.1/32"
}
variable "environment" {
default = "demo"
}
variable "prefix" {
default = "mjmtfdemo"
}
variable "application_count" {
default = 1
}
variable "publickeyfile" {
description = "public key for server builds"
}
variable "privatekeyfile" {
description = "private key for server access"
}
# BIGIP Image
# https://github.com/F5Networks/f5-azure-arm-templates/blob/v7.0.0.2/supported/standalone/1nic/new-stack/payg/azuredeploy.json
variable instance_type { default = "Standard_DS3_v2" }
variable image_name { default = ["f5-bigip-virtual-edition-25m-best-hourly","f5-big-all-1slot-byol"] } # 0: PAYGO 1: BYOL
variable product { default = ["f5-big-ip-best","f5-big-ip-byol"] } # 0: PAYGO 1: BYOL
variable bigip_version { default = ["14.1.206000", "14.1.206000"] } # 0: PAYGO 1: BYOL
variable bigip_license { default = "" }
variable "admin_username" {
description = "BIG-IP administrative user"
default = "admin"
}
## 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.9.0/f5-declarative-onboarding-1.9.0-1.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.16.0/f5-appsvcs-3.16.0-6.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"
}