-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathonboard_do.json
99 lines (99 loc) · 2.71 KB
/
onboard_do.json
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
{
"schemaVersion": "1.0.0",
"class": "Device",
"async": true,
"label": "Onboard BIG-IP",
"Common": {
"class": "Tenant",
"hostname": "${bigip_hostname}",
%{ if bigip_license != "" ~}
"myLicense": {
"class": "License",
"licenseType": "regKey",
"regKey": "${bigip_license}",
"overwrite": true
},
%{ endif ~}
%{ if bigiq_license_host != "" ~}
"myLicense": {
"class": "License",
"licenseType": "licensePool",
"bigIqHost": "${bigiq_license_host}",
"bigIqUsername": "${bigiq_license_username}",
"bigIqPassword": "${bigiq_license_password}",
"licensePool": "${bigiq_license_licensepool}",
"skuKeyword1": "${bigiq_license_skuKeyword1}",
"skuKeyword2": "${bigiq_license_skuKeyword2}",
"unitOfMeasure": "${bigiq_license_unitOfMeasure}",
"reachable": false,
"hypervisor": "${bigiq_hypervisor}",
"overwrite": true
},
%{ endif ~}
"myDns": {
"class": "DNS",
"nameServers": [
${name_servers}
],
"search": [
"f5.com"
]
},
"myNtp": {
"class": "NTP",
"servers": [
${ntp_servers}
],
"timezone": "UTC"
},
"myProvisioning": {
"class": "Provision",
"ltm": "nominal",
"asm": "nominal"
},
"external": {
"class": "VLAN",
"tag": 10,
"mtu": 1500,
"interfaces": [
{
"name": "1.1",
"tagged": false
}
]
},
"internal": {
"class": "VLAN",
"tag": 20,
"mtu": 1500,
"interfaces": [
{
"name": "1.2",
"tagged": false
}
]
},
"internal-self": {
"class": "SelfIp",
"address": "${internal_self_ip}/24",
"vlan": "internal",
"allowService": "default",
"trafficGroup": "traffic-group-local-only"
},
"external-self": {
"class": "SelfIp",
"address": "${external_self_ip}/24",
"vlan": "external",
"allowService": [
"tcp:443"
],
"trafficGroup": "traffic-group-local-only"
},
"default_gateway": {
"class": "Route",
"gw": "${default_gateway_ip}",
"network": "default",
"mtu": 1500
}
}
}