f5bigip.FastHttpsApp
Explore with Pulumi AI
f5bigip.FastHttpsApp
This resource will create and manage FAST HTTPS applications on BIG-IP
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;
return await Deployment.RunAsync(() =>
{
var fastHttpsApp = new F5BigIP.FastHttpsApp("fastHttpsApp", new()
{
Application = "fasthttpsapp",
Tenant = "fasthttpstenant",
VirtualServer = new F5BigIP.Inputs.FastHttpsAppVirtualServerArgs
{
Ip = "10.30.40.44",
Port = 443,
},
});
});
package main
import (
"github.com/pulumi/pulumi-f5bigip/sdk/v3/go/f5bigip"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := f5bigip.NewFastHttpsApp(ctx, "fastHttpsApp", &f5bigip.FastHttpsAppArgs{
Application: pulumi.String("fasthttpsapp"),
Tenant: pulumi.String("fasthttpstenant"),
VirtualServer: &f5bigip.FastHttpsAppVirtualServerArgs{
Ip: pulumi.String("10.30.40.44"),
Port: pulumi.Int(443),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.f5bigip.FastHttpsApp;
import com.pulumi.f5bigip.FastHttpsAppArgs;
import com.pulumi.f5bigip.inputs.FastHttpsAppVirtualServerArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var fastHttpsApp = new FastHttpsApp("fastHttpsApp", FastHttpsAppArgs.builder()
.application("fasthttpsapp")
.tenant("fasthttpstenant")
.virtualServer(FastHttpsAppVirtualServerArgs.builder()
.ip("10.30.40.44")
.port(443)
.build())
.build());
}
}
import pulumi
import pulumi_f5bigip as f5bigip
fast_https_app = f5bigip.FastHttpsApp("fastHttpsApp",
application="fasthttpsapp",
tenant="fasthttpstenant",
virtual_server=f5bigip.FastHttpsAppVirtualServerArgs(
ip="10.30.40.44",
port=443,
))
import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";
const fastHttpsApp = new f5bigip.FastHttpsApp("fastHttpsApp", {
application: "fasthttpsapp",
tenant: "fasthttpstenant",
virtualServer: {
ip: "10.30.40.44",
port: 443,
},
});
resources:
fastHttpsApp:
type: f5bigip:FastHttpsApp
properties:
application: fasthttpsapp
tenant: fasthttpstenant
virtualServer:
ip: 10.30.40.44
port: 443
With Service Discovery
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;
return await Deployment.RunAsync(() =>
{
var tC3AzureServiceDiscovery = F5BigIP.Fast.GetAzureServiceDiscovery.Invoke(new()
{
ResourceGroup = "testazurerg",
SubscriptionId = "testazuresid",
TagKey = "testazuretag",
TagValue = "testazurevalue",
});
var tC3GceServiceDiscovery = F5BigIP.Fast.GetGceServiceDiscovery.Invoke(new()
{
TagKey = "testgcetag",
TagValue = "testgcevalue",
Region = "testgceregion",
});
var fastHttpsApp = new F5BigIP.FastHttpsApp("fastHttpsApp", new()
{
Tenant = "fasthttpstenant",
Application = "fasthttpsapp",
VirtualServer = new F5BigIP.Inputs.FastHttpsAppVirtualServerArgs
{
Ip = "10.30.40.44",
Port = 443,
},
PoolMembers = new[]
{
new F5BigIP.Inputs.FastHttpsAppPoolMemberArgs
{
Addresses = new[]
{
"10.11.40.120",
"10.11.30.121",
"10.11.30.122",
},
Port = 80,
},
},
ServiceDiscoveries = new[]
{
tC3GceServiceDiscovery.Apply(getGceServiceDiscoveryResult => getGceServiceDiscoveryResult.GceSdJson),
tC3AzureServiceDiscovery.Apply(getAzureServiceDiscoveryResult => getAzureServiceDiscoveryResult.AzureSdJson),
},
});
});
package main
import (
"github.com/pulumi/pulumi-f5bigip/sdk/v3/go/f5bigip"
"github.com/pulumi/pulumi-f5bigip/sdk/v3/go/f5bigip/fast"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
tC3AzureServiceDiscovery, err := fast.GetAzureServiceDiscovery(ctx, &fast.GetAzureServiceDiscoveryArgs{
ResourceGroup: "testazurerg",
SubscriptionId: "testazuresid",
TagKey: pulumi.StringRef("testazuretag"),
TagValue: pulumi.StringRef("testazurevalue"),
}, nil)
if err != nil {
return err
}
tC3GceServiceDiscovery, err := fast.GetGceServiceDiscovery(ctx, &fast.GetGceServiceDiscoveryArgs{
TagKey: "testgcetag",
TagValue: "testgcevalue",
Region: "testgceregion",
}, nil)
if err != nil {
return err
}
_, err = f5bigip.NewFastHttpsApp(ctx, "fastHttpsApp", &f5bigip.FastHttpsAppArgs{
Tenant: pulumi.String("fasthttpstenant"),
Application: pulumi.String("fasthttpsapp"),
VirtualServer: &f5bigip.FastHttpsAppVirtualServerArgs{
Ip: pulumi.String("10.30.40.44"),
Port: pulumi.Int(443),
},
PoolMembers: f5bigip.FastHttpsAppPoolMemberArray{
&f5bigip.FastHttpsAppPoolMemberArgs{
Addresses: pulumi.StringArray{
pulumi.String("10.11.40.120"),
pulumi.String("10.11.30.121"),
pulumi.String("10.11.30.122"),
},
Port: pulumi.Int(80),
},
},
ServiceDiscoveries: pulumi.StringArray{
*pulumi.String(tC3GceServiceDiscovery.GceSdJson),
*pulumi.String(tC3AzureServiceDiscovery.AzureSdJson),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.f5bigip.fast.FastFunctions;
import com.pulumi.f5bigip.fast.inputs.GetAzureServiceDiscoveryArgs;
import com.pulumi.f5bigip.fast.inputs.GetGceServiceDiscoveryArgs;
import com.pulumi.f5bigip.FastHttpsApp;
import com.pulumi.f5bigip.FastHttpsAppArgs;
import com.pulumi.f5bigip.inputs.FastHttpsAppVirtualServerArgs;
import com.pulumi.f5bigip.inputs.FastHttpsAppPoolMemberArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var tC3AzureServiceDiscovery = FastFunctions.getAzureServiceDiscovery(GetAzureServiceDiscoveryArgs.builder()
.resourceGroup("testazurerg")
.subscriptionId("testazuresid")
.tagKey("testazuretag")
.tagValue("testazurevalue")
.build());
final var tC3GceServiceDiscovery = FastFunctions.getGceServiceDiscovery(GetGceServiceDiscoveryArgs.builder()
.tagKey("testgcetag")
.tagValue("testgcevalue")
.region("testgceregion")
.build());
var fastHttpsApp = new FastHttpsApp("fastHttpsApp", FastHttpsAppArgs.builder()
.tenant("fasthttpstenant")
.application("fasthttpsapp")
.virtualServer(FastHttpsAppVirtualServerArgs.builder()
.ip("10.30.40.44")
.port(443)
.build())
.poolMembers(FastHttpsAppPoolMemberArgs.builder()
.addresses(
"10.11.40.120",
"10.11.30.121",
"10.11.30.122")
.port(80)
.build())
.serviceDiscoveries(
tC3GceServiceDiscovery.applyValue(getGceServiceDiscoveryResult -> getGceServiceDiscoveryResult.gceSdJson()),
tC3AzureServiceDiscovery.applyValue(getAzureServiceDiscoveryResult -> getAzureServiceDiscoveryResult.azureSdJson()))
.build());
}
}
import pulumi
import pulumi_f5bigip as f5bigip
t_c3_azure_service_discovery = f5bigip.fast.get_azure_service_discovery(resource_group="testazurerg",
subscription_id="testazuresid",
tag_key="testazuretag",
tag_value="testazurevalue")
t_c3_gce_service_discovery = f5bigip.fast.get_gce_service_discovery(tag_key="testgcetag",
tag_value="testgcevalue",
region="testgceregion")
fast_https_app = f5bigip.FastHttpsApp("fastHttpsApp",
tenant="fasthttpstenant",
application="fasthttpsapp",
virtual_server=f5bigip.FastHttpsAppVirtualServerArgs(
ip="10.30.40.44",
port=443,
),
pool_members=[f5bigip.FastHttpsAppPoolMemberArgs(
addresses=[
"10.11.40.120",
"10.11.30.121",
"10.11.30.122",
],
port=80,
)],
service_discoveries=[
t_c3_gce_service_discovery.gce_sd_json,
t_c3_azure_service_discovery.azure_sd_json,
])
import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";
const tC3AzureServiceDiscovery = f5bigip.fast.getAzureServiceDiscovery({
resourceGroup: "testazurerg",
subscriptionId: "testazuresid",
tagKey: "testazuretag",
tagValue: "testazurevalue",
});
const tC3GceServiceDiscovery = f5bigip.fast.getGceServiceDiscovery({
tagKey: "testgcetag",
tagValue: "testgcevalue",
region: "testgceregion",
});
const fastHttpsApp = new f5bigip.FastHttpsApp("fastHttpsApp", {
tenant: "fasthttpstenant",
application: "fasthttpsapp",
virtualServer: {
ip: "10.30.40.44",
port: 443,
},
poolMembers: [{
addresses: [
"10.11.40.120",
"10.11.30.121",
"10.11.30.122",
],
port: 80,
}],
serviceDiscoveries: [
tC3GceServiceDiscovery.then(tC3GceServiceDiscovery => tC3GceServiceDiscovery.gceSdJson),
tC3AzureServiceDiscovery.then(tC3AzureServiceDiscovery => tC3AzureServiceDiscovery.azureSdJson),
],
});
resources:
fastHttpsApp:
type: f5bigip:FastHttpsApp
properties:
tenant: fasthttpstenant
application: fasthttpsapp
virtualServer:
ip: 10.30.40.44
port: 443
poolMembers:
- addresses:
- 10.11.40.120
- 10.11.30.121
- 10.11.30.122
port: 80
serviceDiscoveries:
- ${tC3GceServiceDiscovery.gceSdJson}
- ${tC3AzureServiceDiscovery.azureSdJson}
variables:
tC3AzureServiceDiscovery:
fn::invoke:
Function: f5bigip:fast:getAzureServiceDiscovery
Arguments:
resourceGroup: testazurerg
subscriptionId: testazuresid
tagKey: testazuretag
tagValue: testazurevalue
tC3GceServiceDiscovery:
fn::invoke:
Function: f5bigip:fast:getGceServiceDiscovery
Arguments:
tagKey: testgcetag
tagValue: testgcevalue
region: testgceregion
Create FastHttpsApp Resource
new FastHttpsApp(name: string, args: FastHttpsAppArgs, opts?: CustomResourceOptions);
@overload
def FastHttpsApp(resource_name: str,
opts: Optional[ResourceOptions] = None,
application: Optional[str] = None,
endpoint_ltm_policies: Optional[Sequence[str]] = None,
existing_monitor: Optional[str] = None,
existing_pool: Optional[str] = None,
existing_snat_pool: Optional[str] = None,
existing_tls_client_profile: Optional[str] = None,
existing_tls_server_profile: Optional[str] = None,
existing_waf_security_policy: Optional[str] = None,
load_balancing_mode: Optional[str] = None,
monitor: Optional[FastHttpsAppMonitorArgs] = None,
pool_members: Optional[Sequence[FastHttpsAppPoolMemberArgs]] = None,
security_log_profiles: Optional[Sequence[str]] = None,
service_discoveries: Optional[Sequence[str]] = None,
slow_ramp_time: Optional[int] = None,
snat_pool_addresses: Optional[Sequence[str]] = None,
tenant: Optional[str] = None,
tls_client_profile: Optional[FastHttpsAppTlsClientProfileArgs] = None,
tls_server_profile: Optional[FastHttpsAppTlsServerProfileArgs] = None,
virtual_server: Optional[FastHttpsAppVirtualServerArgs] = None,
waf_security_policy: Optional[FastHttpsAppWafSecurityPolicyArgs] = None)
@overload
def FastHttpsApp(resource_name: str,
args: FastHttpsAppArgs,
opts: Optional[ResourceOptions] = None)
func NewFastHttpsApp(ctx *Context, name string, args FastHttpsAppArgs, opts ...ResourceOption) (*FastHttpsApp, error)
public FastHttpsApp(string name, FastHttpsAppArgs args, CustomResourceOptions? opts = null)
public FastHttpsApp(String name, FastHttpsAppArgs args)
public FastHttpsApp(String name, FastHttpsAppArgs args, CustomResourceOptions options)
type: f5bigip:FastHttpsApp
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FastHttpsAppArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args FastHttpsAppArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args FastHttpsAppArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FastHttpsAppArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FastHttpsAppArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
FastHttpsApp Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The FastHttpsApp resource accepts the following input properties:
- Application string
Name of the FAST HTTPS application.
- Tenant string
Name of the FAST HTTPS application tenant.
- Endpoint
Ltm List<string>Policies List of LTM Policies to be applied FAST HTTPS Application.
- Existing
Monitor string Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
- Existing
Pool string Name of an existing BIG-IP pool.
- Existing
Snat stringPool Name of an existing BIG-IP SNAT pool.
- Existing
Tls stringClient Profile Name of an existing TLS client profile.
- Existing
Tls stringServer Profile Name of an existing TLS server profile.
- Existing
Waf stringSecurity Policy Name of an existing WAF Security policy.
- Load
Balancing stringMode A
load balancing method
is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method- Monitor
Pulumi.
F5Big IP. Inputs. Fast Https App Monitor monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- Pool
Members List<Pulumi.F5Big IP. Inputs. Fast Https App Pool Member> pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- Security
Log List<string>Profiles List of security log profiles to be used for FAST application
- Service
Discoveries List<string> List of different cloud service discovery config provided as string, provided
service_discovery
block to Automatically Discover Pool Members with Service Discovery on different clouds.- Slow
Ramp intTime Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- Snat
Pool List<string>Addresses List of address to be used for FAST-Generated SNAT Pool.
- Tls
Client Pulumi.Profile F5Big IP. Inputs. Fast Https App Tls Client Profile tls_client_profile
block takes input for FAST-Generated TLS client Profile. See TLS Client Profile below for more details.NOTE Profile provided by
existing_tls_client_profile
ortls_client_profile
used for encrypt server-side connections.- Tls
Server Pulumi.Profile F5Big IP. Inputs. Fast Https App Tls Server Profile tls_server_profile
block takes input for FAST-Generated TLS Server Profile. See TLS Server Profile below for more details.NOTE Profile provided by
existing_tls_server_profile
ortls_server_profile
used for decrypt client-side connections.- Virtual
Server Pulumi.F5Big IP. Inputs. Fast Https App Virtual Server virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- Waf
Security Pulumi.Policy F5Big IP. Inputs. Fast Https App Waf Security Policy waf_security_policy
block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
- Application string
Name of the FAST HTTPS application.
- Tenant string
Name of the FAST HTTPS application tenant.
- Endpoint
Ltm []stringPolicies List of LTM Policies to be applied FAST HTTPS Application.
- Existing
Monitor string Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
- Existing
Pool string Name of an existing BIG-IP pool.
- Existing
Snat stringPool Name of an existing BIG-IP SNAT pool.
- Existing
Tls stringClient Profile Name of an existing TLS client profile.
- Existing
Tls stringServer Profile Name of an existing TLS server profile.
- Existing
Waf stringSecurity Policy Name of an existing WAF Security policy.
- Load
Balancing stringMode A
load balancing method
is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method- Monitor
Fast
Https App Monitor Args monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- Pool
Members []FastHttps App Pool Member Args pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- Security
Log []stringProfiles List of security log profiles to be used for FAST application
- Service
Discoveries []string List of different cloud service discovery config provided as string, provided
service_discovery
block to Automatically Discover Pool Members with Service Discovery on different clouds.- Slow
Ramp intTime Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- Snat
Pool []stringAddresses List of address to be used for FAST-Generated SNAT Pool.
- Tls
Client FastProfile Https App Tls Client Profile Args tls_client_profile
block takes input for FAST-Generated TLS client Profile. See TLS Client Profile below for more details.NOTE Profile provided by
existing_tls_client_profile
ortls_client_profile
used for encrypt server-side connections.- Tls
Server FastProfile Https App Tls Server Profile Args tls_server_profile
block takes input for FAST-Generated TLS Server Profile. See TLS Server Profile below for more details.NOTE Profile provided by
existing_tls_server_profile
ortls_server_profile
used for decrypt client-side connections.- Virtual
Server FastHttps App Virtual Server Args virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- Waf
Security FastPolicy Https App Waf Security Policy Args waf_security_policy
block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
- application String
Name of the FAST HTTPS application.
- tenant String
Name of the FAST HTTPS application tenant.
- endpoint
Ltm List<String>Policies List of LTM Policies to be applied FAST HTTPS Application.
- existing
Monitor String Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
- existing
Pool String Name of an existing BIG-IP pool.
- existing
Snat StringPool Name of an existing BIG-IP SNAT pool.
- existing
Tls StringClient Profile Name of an existing TLS client profile.
- existing
Tls StringServer Profile Name of an existing TLS server profile.
- existing
Waf StringSecurity Policy Name of an existing WAF Security policy.
- load
Balancing StringMode A
load balancing method
is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method- monitor
Fast
Https App Monitor monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- pool
Members List<FastHttps App Pool Member> pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- security
Log List<String>Profiles List of security log profiles to be used for FAST application
- service
Discoveries List<String> List of different cloud service discovery config provided as string, provided
service_discovery
block to Automatically Discover Pool Members with Service Discovery on different clouds.- slow
Ramp IntegerTime Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- snat
Pool List<String>Addresses List of address to be used for FAST-Generated SNAT Pool.
- tls
Client FastProfile Https App Tls Client Profile tls_client_profile
block takes input for FAST-Generated TLS client Profile. See TLS Client Profile below for more details.NOTE Profile provided by
existing_tls_client_profile
ortls_client_profile
used for encrypt server-side connections.- tls
Server FastProfile Https App Tls Server Profile tls_server_profile
block takes input for FAST-Generated TLS Server Profile. See TLS Server Profile below for more details.NOTE Profile provided by
existing_tls_server_profile
ortls_server_profile
used for decrypt client-side connections.- virtual
Server FastHttps App Virtual Server virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- waf
Security FastPolicy Https App Waf Security Policy waf_security_policy
block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
- application string
Name of the FAST HTTPS application.
- tenant string
Name of the FAST HTTPS application tenant.
- endpoint
Ltm string[]Policies List of LTM Policies to be applied FAST HTTPS Application.
- existing
Monitor string Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
- existing
Pool string Name of an existing BIG-IP pool.
- existing
Snat stringPool Name of an existing BIG-IP SNAT pool.
- existing
Tls stringClient Profile Name of an existing TLS client profile.
- existing
Tls stringServer Profile Name of an existing TLS server profile.
- existing
Waf stringSecurity Policy Name of an existing WAF Security policy.
- load
Balancing stringMode A
load balancing method
is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method- monitor
Fast
Https App Monitor monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- pool
Members FastHttps App Pool Member[] pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- security
Log string[]Profiles List of security log profiles to be used for FAST application
- service
Discoveries string[] List of different cloud service discovery config provided as string, provided
service_discovery
block to Automatically Discover Pool Members with Service Discovery on different clouds.- slow
Ramp numberTime Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- snat
Pool string[]Addresses List of address to be used for FAST-Generated SNAT Pool.
- tls
Client FastProfile Https App Tls Client Profile tls_client_profile
block takes input for FAST-Generated TLS client Profile. See TLS Client Profile below for more details.NOTE Profile provided by
existing_tls_client_profile
ortls_client_profile
used for encrypt server-side connections.- tls
Server FastProfile Https App Tls Server Profile tls_server_profile
block takes input for FAST-Generated TLS Server Profile. See TLS Server Profile below for more details.NOTE Profile provided by
existing_tls_server_profile
ortls_server_profile
used for decrypt client-side connections.- virtual
Server FastHttps App Virtual Server virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- waf
Security FastPolicy Https App Waf Security Policy waf_security_policy
block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
- application str
Name of the FAST HTTPS application.
- tenant str
Name of the FAST HTTPS application tenant.
- endpoint_
ltm_ Sequence[str]policies List of LTM Policies to be applied FAST HTTPS Application.
- existing_
monitor str Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
- existing_
pool str Name of an existing BIG-IP pool.
- existing_
snat_ strpool Name of an existing BIG-IP SNAT pool.
- existing_
tls_ strclient_ profile Name of an existing TLS client profile.
- existing_
tls_ strserver_ profile Name of an existing TLS server profile.
- existing_
waf_ strsecurity_ policy Name of an existing WAF Security policy.
- load_
balancing_ strmode A
load balancing method
is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method- monitor
Fast
Https App Monitor Args monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- pool_
members Sequence[FastHttps App Pool Member Args] pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- security_
log_ Sequence[str]profiles List of security log profiles to be used for FAST application
- service_
discoveries Sequence[str] List of different cloud service discovery config provided as string, provided
service_discovery
block to Automatically Discover Pool Members with Service Discovery on different clouds.- slow_
ramp_ inttime Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- snat_
pool_ Sequence[str]addresses List of address to be used for FAST-Generated SNAT Pool.
- tls_
client_ Fastprofile Https App Tls Client Profile Args tls_client_profile
block takes input for FAST-Generated TLS client Profile. See TLS Client Profile below for more details.NOTE Profile provided by
existing_tls_client_profile
ortls_client_profile
used for encrypt server-side connections.- tls_
server_ Fastprofile Https App Tls Server Profile Args tls_server_profile
block takes input for FAST-Generated TLS Server Profile. See TLS Server Profile below for more details.NOTE Profile provided by
existing_tls_server_profile
ortls_server_profile
used for decrypt client-side connections.- virtual_
server FastHttps App Virtual Server Args virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- waf_
security_ Fastpolicy Https App Waf Security Policy Args waf_security_policy
block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
- application String
Name of the FAST HTTPS application.
- tenant String
Name of the FAST HTTPS application tenant.
- endpoint
Ltm List<String>Policies List of LTM Policies to be applied FAST HTTPS Application.
- existing
Monitor String Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
- existing
Pool String Name of an existing BIG-IP pool.
- existing
Snat StringPool Name of an existing BIG-IP SNAT pool.
- existing
Tls StringClient Profile Name of an existing TLS client profile.
- existing
Tls StringServer Profile Name of an existing TLS server profile.
- existing
Waf StringSecurity Policy Name of an existing WAF Security policy.
- load
Balancing StringMode A
load balancing method
is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method- monitor Property Map
monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- pool
Members List<Property Map> pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- security
Log List<String>Profiles List of security log profiles to be used for FAST application
- service
Discoveries List<String> List of different cloud service discovery config provided as string, provided
service_discovery
block to Automatically Discover Pool Members with Service Discovery on different clouds.- slow
Ramp NumberTime Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- snat
Pool List<String>Addresses List of address to be used for FAST-Generated SNAT Pool.
- tls
Client Property MapProfile tls_client_profile
block takes input for FAST-Generated TLS client Profile. See TLS Client Profile below for more details.NOTE Profile provided by
existing_tls_client_profile
ortls_client_profile
used for encrypt server-side connections.- tls
Server Property MapProfile tls_server_profile
block takes input for FAST-Generated TLS Server Profile. See TLS Server Profile below for more details.NOTE Profile provided by
existing_tls_server_profile
ortls_server_profile
used for decrypt client-side connections.- virtual
Server Property Map virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- waf
Security Property MapPolicy waf_security_policy
block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
Outputs
All input properties are implicitly available as output properties. Additionally, the FastHttpsApp resource produces the following output properties:
- Fast
Https stringJson Json payload for FAST HTTPS application.
- Id string
The provider-assigned unique ID for this managed resource.
- Fast
Https stringJson Json payload for FAST HTTPS application.
- Id string
The provider-assigned unique ID for this managed resource.
- fast
Https StringJson Json payload for FAST HTTPS application.
- id String
The provider-assigned unique ID for this managed resource.
- fast
Https stringJson Json payload for FAST HTTPS application.
- id string
The provider-assigned unique ID for this managed resource.
- fast_
https_ strjson Json payload for FAST HTTPS application.
- id str
The provider-assigned unique ID for this managed resource.
- fast
Https StringJson Json payload for FAST HTTPS application.
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing FastHttpsApp Resource
Get an existing FastHttpsApp resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: FastHttpsAppState, opts?: CustomResourceOptions): FastHttpsApp
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application: Optional[str] = None,
endpoint_ltm_policies: Optional[Sequence[str]] = None,
existing_monitor: Optional[str] = None,
existing_pool: Optional[str] = None,
existing_snat_pool: Optional[str] = None,
existing_tls_client_profile: Optional[str] = None,
existing_tls_server_profile: Optional[str] = None,
existing_waf_security_policy: Optional[str] = None,
fast_https_json: Optional[str] = None,
load_balancing_mode: Optional[str] = None,
monitor: Optional[FastHttpsAppMonitorArgs] = None,
pool_members: Optional[Sequence[FastHttpsAppPoolMemberArgs]] = None,
security_log_profiles: Optional[Sequence[str]] = None,
service_discoveries: Optional[Sequence[str]] = None,
slow_ramp_time: Optional[int] = None,
snat_pool_addresses: Optional[Sequence[str]] = None,
tenant: Optional[str] = None,
tls_client_profile: Optional[FastHttpsAppTlsClientProfileArgs] = None,
tls_server_profile: Optional[FastHttpsAppTlsServerProfileArgs] = None,
virtual_server: Optional[FastHttpsAppVirtualServerArgs] = None,
waf_security_policy: Optional[FastHttpsAppWafSecurityPolicyArgs] = None) -> FastHttpsApp
func GetFastHttpsApp(ctx *Context, name string, id IDInput, state *FastHttpsAppState, opts ...ResourceOption) (*FastHttpsApp, error)
public static FastHttpsApp Get(string name, Input<string> id, FastHttpsAppState? state, CustomResourceOptions? opts = null)
public static FastHttpsApp get(String name, Output<String> id, FastHttpsAppState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Application string
Name of the FAST HTTPS application.
- Endpoint
Ltm List<string>Policies List of LTM Policies to be applied FAST HTTPS Application.
- Existing
Monitor string Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
- Existing
Pool string Name of an existing BIG-IP pool.
- Existing
Snat stringPool Name of an existing BIG-IP SNAT pool.
- Existing
Tls stringClient Profile Name of an existing TLS client profile.
- Existing
Tls stringServer Profile Name of an existing TLS server profile.
- Existing
Waf stringSecurity Policy Name of an existing WAF Security policy.
- Fast
Https stringJson Json payload for FAST HTTPS application.
- Load
Balancing stringMode A
load balancing method
is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method- Monitor
Pulumi.
F5Big IP. Inputs. Fast Https App Monitor monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- Pool
Members List<Pulumi.F5Big IP. Inputs. Fast Https App Pool Member> pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- Security
Log List<string>Profiles List of security log profiles to be used for FAST application
- Service
Discoveries List<string> List of different cloud service discovery config provided as string, provided
service_discovery
block to Automatically Discover Pool Members with Service Discovery on different clouds.- Slow
Ramp intTime Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- Snat
Pool List<string>Addresses List of address to be used for FAST-Generated SNAT Pool.
- Tenant string
Name of the FAST HTTPS application tenant.
- Tls
Client Pulumi.Profile F5Big IP. Inputs. Fast Https App Tls Client Profile tls_client_profile
block takes input for FAST-Generated TLS client Profile. See TLS Client Profile below for more details.NOTE Profile provided by
existing_tls_client_profile
ortls_client_profile
used for encrypt server-side connections.- Tls
Server Pulumi.Profile F5Big IP. Inputs. Fast Https App Tls Server Profile tls_server_profile
block takes input for FAST-Generated TLS Server Profile. See TLS Server Profile below for more details.NOTE Profile provided by
existing_tls_server_profile
ortls_server_profile
used for decrypt client-side connections.- Virtual
Server Pulumi.F5Big IP. Inputs. Fast Https App Virtual Server virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- Waf
Security Pulumi.Policy F5Big IP. Inputs. Fast Https App Waf Security Policy waf_security_policy
block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
- Application string
Name of the FAST HTTPS application.
- Endpoint
Ltm []stringPolicies List of LTM Policies to be applied FAST HTTPS Application.
- Existing
Monitor string Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
- Existing
Pool string Name of an existing BIG-IP pool.
- Existing
Snat stringPool Name of an existing BIG-IP SNAT pool.
- Existing
Tls stringClient Profile Name of an existing TLS client profile.
- Existing
Tls stringServer Profile Name of an existing TLS server profile.
- Existing
Waf stringSecurity Policy Name of an existing WAF Security policy.
- Fast
Https stringJson Json payload for FAST HTTPS application.
- Load
Balancing stringMode A
load balancing method
is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method- Monitor
Fast
Https App Monitor Args monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- Pool
Members []FastHttps App Pool Member Args pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- Security
Log []stringProfiles List of security log profiles to be used for FAST application
- Service
Discoveries []string List of different cloud service discovery config provided as string, provided
service_discovery
block to Automatically Discover Pool Members with Service Discovery on different clouds.- Slow
Ramp intTime Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- Snat
Pool []stringAddresses List of address to be used for FAST-Generated SNAT Pool.
- Tenant string
Name of the FAST HTTPS application tenant.
- Tls
Client FastProfile Https App Tls Client Profile Args tls_client_profile
block takes input for FAST-Generated TLS client Profile. See TLS Client Profile below for more details.NOTE Profile provided by
existing_tls_client_profile
ortls_client_profile
used for encrypt server-side connections.- Tls
Server FastProfile Https App Tls Server Profile Args tls_server_profile
block takes input for FAST-Generated TLS Server Profile. See TLS Server Profile below for more details.NOTE Profile provided by
existing_tls_server_profile
ortls_server_profile
used for decrypt client-side connections.- Virtual
Server FastHttps App Virtual Server Args virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- Waf
Security FastPolicy Https App Waf Security Policy Args waf_security_policy
block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
- application String
Name of the FAST HTTPS application.
- endpoint
Ltm List<String>Policies List of LTM Policies to be applied FAST HTTPS Application.
- existing
Monitor String Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
- existing
Pool String Name of an existing BIG-IP pool.
- existing
Snat StringPool Name of an existing BIG-IP SNAT pool.
- existing
Tls StringClient Profile Name of an existing TLS client profile.
- existing
Tls StringServer Profile Name of an existing TLS server profile.
- existing
Waf StringSecurity Policy Name of an existing WAF Security policy.
- fast
Https StringJson Json payload for FAST HTTPS application.
- load
Balancing StringMode A
load balancing method
is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method- monitor
Fast
Https App Monitor monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- pool
Members List<FastHttps App Pool Member> pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- security
Log List<String>Profiles List of security log profiles to be used for FAST application
- service
Discoveries List<String> List of different cloud service discovery config provided as string, provided
service_discovery
block to Automatically Discover Pool Members with Service Discovery on different clouds.- slow
Ramp IntegerTime Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- snat
Pool List<String>Addresses List of address to be used for FAST-Generated SNAT Pool.
- tenant String
Name of the FAST HTTPS application tenant.
- tls
Client FastProfile Https App Tls Client Profile tls_client_profile
block takes input for FAST-Generated TLS client Profile. See TLS Client Profile below for more details.NOTE Profile provided by
existing_tls_client_profile
ortls_client_profile
used for encrypt server-side connections.- tls
Server FastProfile Https App Tls Server Profile tls_server_profile
block takes input for FAST-Generated TLS Server Profile. See TLS Server Profile below for more details.NOTE Profile provided by
existing_tls_server_profile
ortls_server_profile
used for decrypt client-side connections.- virtual
Server FastHttps App Virtual Server virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- waf
Security FastPolicy Https App Waf Security Policy waf_security_policy
block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
- application string
Name of the FAST HTTPS application.
- endpoint
Ltm string[]Policies List of LTM Policies to be applied FAST HTTPS Application.
- existing
Monitor string Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
- existing
Pool string Name of an existing BIG-IP pool.
- existing
Snat stringPool Name of an existing BIG-IP SNAT pool.
- existing
Tls stringClient Profile Name of an existing TLS client profile.
- existing
Tls stringServer Profile Name of an existing TLS server profile.
- existing
Waf stringSecurity Policy Name of an existing WAF Security policy.
- fast
Https stringJson Json payload for FAST HTTPS application.
- load
Balancing stringMode A
load balancing method
is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method- monitor
Fast
Https App Monitor monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- pool
Members FastHttps App Pool Member[] pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- security
Log string[]Profiles List of security log profiles to be used for FAST application
- service
Discoveries string[] List of different cloud service discovery config provided as string, provided
service_discovery
block to Automatically Discover Pool Members with Service Discovery on different clouds.- slow
Ramp numberTime Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- snat
Pool string[]Addresses List of address to be used for FAST-Generated SNAT Pool.
- tenant string
Name of the FAST HTTPS application tenant.
- tls
Client FastProfile Https App Tls Client Profile tls_client_profile
block takes input for FAST-Generated TLS client Profile. See TLS Client Profile below for more details.NOTE Profile provided by
existing_tls_client_profile
ortls_client_profile
used for encrypt server-side connections.- tls
Server FastProfile Https App Tls Server Profile tls_server_profile
block takes input for FAST-Generated TLS Server Profile. See TLS Server Profile below for more details.NOTE Profile provided by
existing_tls_server_profile
ortls_server_profile
used for decrypt client-side connections.- virtual
Server FastHttps App Virtual Server virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- waf
Security FastPolicy Https App Waf Security Policy waf_security_policy
block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
- application str
Name of the FAST HTTPS application.
- endpoint_
ltm_ Sequence[str]policies List of LTM Policies to be applied FAST HTTPS Application.
- existing_
monitor str Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
- existing_
pool str Name of an existing BIG-IP pool.
- existing_
snat_ strpool Name of an existing BIG-IP SNAT pool.
- existing_
tls_ strclient_ profile Name of an existing TLS client profile.
- existing_
tls_ strserver_ profile Name of an existing TLS server profile.
- existing_
waf_ strsecurity_ policy Name of an existing WAF Security policy.
- fast_
https_ strjson Json payload for FAST HTTPS application.
- load_
balancing_ strmode A
load balancing method
is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method- monitor
Fast
Https App Monitor Args monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- pool_
members Sequence[FastHttps App Pool Member Args] pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- security_
log_ Sequence[str]profiles List of security log profiles to be used for FAST application
- service_
discoveries Sequence[str] List of different cloud service discovery config provided as string, provided
service_discovery
block to Automatically Discover Pool Members with Service Discovery on different clouds.- slow_
ramp_ inttime Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- snat_
pool_ Sequence[str]addresses List of address to be used for FAST-Generated SNAT Pool.
- tenant str
Name of the FAST HTTPS application tenant.
- tls_
client_ Fastprofile Https App Tls Client Profile Args tls_client_profile
block takes input for FAST-Generated TLS client Profile. See TLS Client Profile below for more details.NOTE Profile provided by
existing_tls_client_profile
ortls_client_profile
used for encrypt server-side connections.- tls_
server_ Fastprofile Https App Tls Server Profile Args tls_server_profile
block takes input for FAST-Generated TLS Server Profile. See TLS Server Profile below for more details.NOTE Profile provided by
existing_tls_server_profile
ortls_server_profile
used for decrypt client-side connections.- virtual_
server FastHttps App Virtual Server Args virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- waf_
security_ Fastpolicy Https App Waf Security Policy Args waf_security_policy
block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
- application String
Name of the FAST HTTPS application.
- endpoint
Ltm List<String>Policies List of LTM Policies to be applied FAST HTTPS Application.
- existing
Monitor String Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
- existing
Pool String Name of an existing BIG-IP pool.
- existing
Snat StringPool Name of an existing BIG-IP SNAT pool.
- existing
Tls StringClient Profile Name of an existing TLS client profile.
- existing
Tls StringServer Profile Name of an existing TLS server profile.
- existing
Waf StringSecurity Policy Name of an existing WAF Security policy.
- fast
Https StringJson Json payload for FAST HTTPS application.
- load
Balancing StringMode A
load balancing method
is an algorithm that the BIG-IP system uses to select a pool member for processing a request. F5 recommends the Least Connections load balancing method- monitor Property Map
monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- pool
Members List<Property Map> pool_members
block takes input for FAST-Generated Pool. See Pool Members below for more details.- security
Log List<String>Profiles List of security log profiles to be used for FAST application
- service
Discoveries List<String> List of different cloud service discovery config provided as string, provided
service_discovery
block to Automatically Discover Pool Members with Service Discovery on different clouds.- slow
Ramp NumberTime Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
- snat
Pool List<String>Addresses List of address to be used for FAST-Generated SNAT Pool.
- tenant String
Name of the FAST HTTPS application tenant.
- tls
Client Property MapProfile tls_client_profile
block takes input for FAST-Generated TLS client Profile. See TLS Client Profile below for more details.NOTE Profile provided by
existing_tls_client_profile
ortls_client_profile
used for encrypt server-side connections.- tls
Server Property MapProfile tls_server_profile
block takes input for FAST-Generated TLS Server Profile. See TLS Server Profile below for more details.NOTE Profile provided by
existing_tls_server_profile
ortls_server_profile
used for decrypt client-side connections.- virtual
Server Property Map virtual_server
block will provideip
andport
options to be used for virtual server. See virtual server below for more details.- waf
Security Property MapPolicy waf_security_policy
block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
Supporting Types
FastHttpsAppMonitor, FastHttpsAppMonitorArgs
- Interval int
Set the time between health checks,in seconds for FAST-Generated Pool Monitor.
- Monitor
Auth bool set
true
if the servers require login credentials for web access on FAST-Generated Pool Monitor. default isfalse
.- Password string
password for web access on FAST-Generated Pool Monitor.
- Response string
The presence of this string anywhere in the HTTP response implies availability.
- Send
String string Specify data to be sent during each health check for FAST-Generated Pool Monitor.
- Username string
username for web access on FAST-Generated Pool Monitor.
- Interval int
Set the time between health checks,in seconds for FAST-Generated Pool Monitor.
- Monitor
Auth bool set
true
if the servers require login credentials for web access on FAST-Generated Pool Monitor. default isfalse
.- Password string
password for web access on FAST-Generated Pool Monitor.
- Response string
The presence of this string anywhere in the HTTP response implies availability.
- Send
String string Specify data to be sent during each health check for FAST-Generated Pool Monitor.
- Username string
username for web access on FAST-Generated Pool Monitor.
- interval Integer
Set the time between health checks,in seconds for FAST-Generated Pool Monitor.
- monitor
Auth Boolean set
true
if the servers require login credentials for web access on FAST-Generated Pool Monitor. default isfalse
.- password String
password for web access on FAST-Generated Pool Monitor.
- response String
The presence of this string anywhere in the HTTP response implies availability.
- send
String String Specify data to be sent during each health check for FAST-Generated Pool Monitor.
- username String
username for web access on FAST-Generated Pool Monitor.
- interval number
Set the time between health checks,in seconds for FAST-Generated Pool Monitor.
- monitor
Auth boolean set
true
if the servers require login credentials for web access on FAST-Generated Pool Monitor. default isfalse
.- password string
password for web access on FAST-Generated Pool Monitor.
- response string
The presence of this string anywhere in the HTTP response implies availability.
- send
String string Specify data to be sent during each health check for FAST-Generated Pool Monitor.
- username string
username for web access on FAST-Generated Pool Monitor.
- interval int
Set the time between health checks,in seconds for FAST-Generated Pool Monitor.
- monitor_
auth bool set
true
if the servers require login credentials for web access on FAST-Generated Pool Monitor. default isfalse
.- password str
password for web access on FAST-Generated Pool Monitor.
- response str
The presence of this string anywhere in the HTTP response implies availability.
- send_
string str Specify data to be sent during each health check for FAST-Generated Pool Monitor.
- username str
username for web access on FAST-Generated Pool Monitor.
- interval Number
Set the time between health checks,in seconds for FAST-Generated Pool Monitor.
- monitor
Auth Boolean set
true
if the servers require login credentials for web access on FAST-Generated Pool Monitor. default isfalse
.- password String
password for web access on FAST-Generated Pool Monitor.
- response String
The presence of this string anywhere in the HTTP response implies availability.
- send
String String Specify data to be sent during each health check for FAST-Generated Pool Monitor.
- username String
username for web access on FAST-Generated Pool Monitor.
FastHttpsAppPoolMember, FastHttpsAppPoolMemberArgs
- Addresses List<string>
List of server address to be used for FAST-Generated Pool.
- Connection
Limit int connectionLimit value to be used for FAST-Generated Pool.
- Port int
port number of serviceport to be used for FAST-Generated Pool.
- Priority
Group int priorityGroup value to be used for FAST-Generated Pool.
- bool
shareNodes value to be used for FAST-Generated Pool.
- Addresses []string
List of server address to be used for FAST-Generated Pool.
- Connection
Limit int connectionLimit value to be used for FAST-Generated Pool.
- Port int
port number of serviceport to be used for FAST-Generated Pool.
- Priority
Group int priorityGroup value to be used for FAST-Generated Pool.
- bool
shareNodes value to be used for FAST-Generated Pool.
- addresses List<String>
List of server address to be used for FAST-Generated Pool.
- connection
Limit Integer connectionLimit value to be used for FAST-Generated Pool.
- port Integer
port number of serviceport to be used for FAST-Generated Pool.
- priority
Group Integer priorityGroup value to be used for FAST-Generated Pool.
- Boolean
shareNodes value to be used for FAST-Generated Pool.
- addresses string[]
List of server address to be used for FAST-Generated Pool.
- connection
Limit number connectionLimit value to be used for FAST-Generated Pool.
- port number
port number of serviceport to be used for FAST-Generated Pool.
- priority
Group number priorityGroup value to be used for FAST-Generated Pool.
- boolean
shareNodes value to be used for FAST-Generated Pool.
- addresses Sequence[str]
List of server address to be used for FAST-Generated Pool.
- connection_
limit int connectionLimit value to be used for FAST-Generated Pool.
- port int
port number of serviceport to be used for FAST-Generated Pool.
- priority_
group int priorityGroup value to be used for FAST-Generated Pool.
- bool
shareNodes value to be used for FAST-Generated Pool.
- addresses List<String>
List of server address to be used for FAST-Generated Pool.
- connection
Limit Number connectionLimit value to be used for FAST-Generated Pool.
- port Number
port number of serviceport to be used for FAST-Generated Pool.
- priority
Group Number priorityGroup value to be used for FAST-Generated Pool.
- Boolean
shareNodes value to be used for FAST-Generated Pool.
FastHttpsAppTlsClientProfile, FastHttpsAppTlsClientProfileArgs
- Tls
Cert stringName Name of existing BIG-IP SSL certificate to be used for FAST-Generated TLS Server Profile.
- Tls
Key stringName Name of existing BIG-IP SSL Key to be used for FAST-Generated TLS Server Profile.
- Tls
Cert stringName Name of existing BIG-IP SSL certificate to be used for FAST-Generated TLS Server Profile.
- Tls
Key stringName Name of existing BIG-IP SSL Key to be used for FAST-Generated TLS Server Profile.
- tls
Cert StringName Name of existing BIG-IP SSL certificate to be used for FAST-Generated TLS Server Profile.
- tls
Key StringName Name of existing BIG-IP SSL Key to be used for FAST-Generated TLS Server Profile.
- tls
Cert stringName Name of existing BIG-IP SSL certificate to be used for FAST-Generated TLS Server Profile.
- tls
Key stringName Name of existing BIG-IP SSL Key to be used for FAST-Generated TLS Server Profile.
- tls_
cert_ strname Name of existing BIG-IP SSL certificate to be used for FAST-Generated TLS Server Profile.
- tls_
key_ strname Name of existing BIG-IP SSL Key to be used for FAST-Generated TLS Server Profile.
- tls
Cert StringName Name of existing BIG-IP SSL certificate to be used for FAST-Generated TLS Server Profile.
- tls
Key StringName Name of existing BIG-IP SSL Key to be used for FAST-Generated TLS Server Profile.
FastHttpsAppTlsServerProfile, FastHttpsAppTlsServerProfileArgs
- Tls
Cert stringName Name of existing BIG-IP SSL certificate to be used for FAST-Generated TLS Server Profile.
- Tls
Key stringName Name of existing BIG-IP SSL Key to be used for FAST-Generated TLS Server Profile.
- Tls
Cert stringName Name of existing BIG-IP SSL certificate to be used for FAST-Generated TLS Server Profile.
- Tls
Key stringName Name of existing BIG-IP SSL Key to be used for FAST-Generated TLS Server Profile.
- tls
Cert StringName Name of existing BIG-IP SSL certificate to be used for FAST-Generated TLS Server Profile.
- tls
Key StringName Name of existing BIG-IP SSL Key to be used for FAST-Generated TLS Server Profile.
- tls
Cert stringName Name of existing BIG-IP SSL certificate to be used for FAST-Generated TLS Server Profile.
- tls
Key stringName Name of existing BIG-IP SSL Key to be used for FAST-Generated TLS Server Profile.
- tls_
cert_ strname Name of existing BIG-IP SSL certificate to be used for FAST-Generated TLS Server Profile.
- tls_
key_ strname Name of existing BIG-IP SSL Key to be used for FAST-Generated TLS Server Profile.
- tls
Cert StringName Name of existing BIG-IP SSL certificate to be used for FAST-Generated TLS Server Profile.
- tls
Key StringName Name of existing BIG-IP SSL Key to be used for FAST-Generated TLS Server Profile.
FastHttpsAppVirtualServer, FastHttpsAppVirtualServerArgs
FastHttpsAppWafSecurityPolicy, FastHttpsAppWafSecurityPolicyArgs
- Enable bool
Setting
true
will enable FAST to create WAF Security Policy.
- Enable bool
Setting
true
will enable FAST to create WAF Security Policy.
- enable Boolean
Setting
true
will enable FAST to create WAF Security Policy.
- enable boolean
Setting
true
will enable FAST to create WAF Security Policy.
- enable bool
Setting
true
will enable FAST to create WAF Security Policy.
- enable Boolean
Setting
true
will enable FAST to create WAF Security Policy.
Package Details
- Repository
- f5 BIG-IP pulumi/pulumi-f5bigip
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
bigip
Terraform Provider.