HTTP with Access Policy BIG-IP Next AS3 Example DeclarationΒΆ
HTTP service configuration using pre-loaded access policies
{
"class": "ADC",
"id": "id-policy-access-preloaded",
"schemaVersion": "3.0.0",
"mytenant": {
"class": "Tenant",
"myapp": {
"class": "Application",
"client_tls": {
"class": "TLS_Client",
"ciphers": "RSA",
"tls1_1Enabled": true,
"tls1_2Enabled": true,
"tls1_3Enabled": true
},
"my_pool": {
"class": "Pool",
"loadBalancingMode": "least-connections-member",
"members": [
{
"serverAddresses": [
"198.18.10.10"
],
"servicePort": 443
}
]
},
"my_service": {
"class": "Service_HTTP",
"clientTLS": "client_tls",
"enable": true,
"mirroring": "none",
"policyIAM": {
"cm": "app-access-policy-01"
},
"pool": "my_pool",
"remark": "custom remark",
"virtualAddresses": [
"198.18.1.10"
],
"virtualPort": 443
}
}
}
}