1. Packages
  2. F5bigip Provider
  3. API Docs
  4. FastHttpApp
f5 BIG-IP v3.17.10 published on Tuesday, Apr 8, 2025 by Pulumi

f5bigip.FastHttpApp

Explore with Pulumi AI

f5bigip.FastHttpApp This resource will create and manage FAST HTTP applications on BIG-IP

FAST documentation

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";

const fastHttpApp = new f5bigip.FastHttpApp("fast_http_app", {
    tenant: "fasthttptenant",
    application: "fasthttpapp",
    virtualServer: {
        ip: "10.30.30.44",
        port: 443,
    },
});
Copy
import pulumi
import pulumi_f5bigip as f5bigip

fast_http_app = f5bigip.FastHttpApp("fast_http_app",
    tenant="fasthttptenant",
    application="fasthttpapp",
    virtual_server={
        "ip": "10.30.30.44",
        "port": 443,
    })
Copy
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.NewFastHttpApp(ctx, "fast_http_app", &f5bigip.FastHttpAppArgs{
			Tenant:      pulumi.String("fasthttptenant"),
			Application: pulumi.String("fasthttpapp"),
			VirtualServer: &f5bigip.FastHttpAppVirtualServerArgs{
				Ip:   pulumi.String("10.30.30.44"),
				Port: pulumi.Int(443),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;

return await Deployment.RunAsync(() => 
{
    var fastHttpApp = new F5BigIP.FastHttpApp("fast_http_app", new()
    {
        Tenant = "fasthttptenant",
        Application = "fasthttpapp",
        VirtualServer = new F5BigIP.Inputs.FastHttpAppVirtualServerArgs
        {
            Ip = "10.30.30.44",
            Port = 443,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.f5bigip.FastHttpApp;
import com.pulumi.f5bigip.FastHttpAppArgs;
import com.pulumi.f5bigip.inputs.FastHttpAppVirtualServerArgs;
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 fastHttpApp = new FastHttpApp("fastHttpApp", FastHttpAppArgs.builder()
            .tenant("fasthttptenant")
            .application("fasthttpapp")
            .virtualServer(FastHttpAppVirtualServerArgs.builder()
                .ip("10.30.30.44")
                .port(443)
                .build())
            .build());

    }
}
Copy
resources:
  fastHttpApp:
    type: f5bigip:FastHttpApp
    name: fast_http_app
    properties:
      tenant: fasthttptenant
      application: fasthttpapp
      virtualServer:
        ip: 10.30.30.44
        port: 443
Copy

With Service Discovery

import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";

const TC3 = f5bigip.fast.getAzureServiceDiscovery({
    resourceGroup: "testazurerg",
    subscriptionId: "testazuresid",
    tagKey: "testazuretag",
    tagValue: "testazurevalue",
});
const TC3GetGceServiceDiscovery = f5bigip.fast.getGceServiceDiscovery({
    tagKey: "testgcetag",
    tagValue: "testgcevalue",
    region: "testgceregion",
});
const fastHttpsApp = new f5bigip.FastHttpApp("fast_https_app", {
    tenant: "fasthttptenant",
    application: "fasthttpapp",
    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: [
        TC3GetGceServiceDiscovery.then(TC3GetGceServiceDiscovery => TC3GetGceServiceDiscovery.gceSdJson),
        TC3.then(TC3 => TC3.azureSdJson),
    ],
});
Copy
import pulumi
import pulumi_f5bigip as f5bigip

tc3 = f5bigip.fast.get_azure_service_discovery(resource_group="testazurerg",
    subscription_id="testazuresid",
    tag_key="testazuretag",
    tag_value="testazurevalue")
tc3_get_gce_service_discovery = f5bigip.fast.get_gce_service_discovery(tag_key="testgcetag",
    tag_value="testgcevalue",
    region="testgceregion")
fast_https_app = f5bigip.FastHttpApp("fast_https_app",
    tenant="fasthttptenant",
    application="fasthttpapp",
    virtual_server={
        "ip": "10.30.40.44",
        "port": 443,
    },
    pool_members=[{
        "addresses": [
            "10.11.40.120",
            "10.11.30.121",
            "10.11.30.122",
        ],
        "port": 80,
    }],
    service_discoveries=[
        tc3_get_gce_service_discovery.gce_sd_json,
        tc3.azure_sd_json,
    ])
Copy
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 {
		TC3, err := fast.GetAzureServiceDiscovery(ctx, &fast.GetAzureServiceDiscoveryArgs{
			ResourceGroup:  "testazurerg",
			SubscriptionId: "testazuresid",
			TagKey:         pulumi.StringRef("testazuretag"),
			TagValue:       pulumi.StringRef("testazurevalue"),
		}, nil)
		if err != nil {
			return err
		}
		TC3GetGceServiceDiscovery, err := fast.GetGceServiceDiscovery(ctx, &fast.GetGceServiceDiscoveryArgs{
			TagKey:   "testgcetag",
			TagValue: "testgcevalue",
			Region:   "testgceregion",
		}, nil)
		if err != nil {
			return err
		}
		_, err = f5bigip.NewFastHttpApp(ctx, "fast_https_app", &f5bigip.FastHttpAppArgs{
			Tenant:      pulumi.String("fasthttptenant"),
			Application: pulumi.String("fasthttpapp"),
			VirtualServer: &f5bigip.FastHttpAppVirtualServerArgs{
				Ip:   pulumi.String("10.30.40.44"),
				Port: pulumi.Int(443),
			},
			PoolMembers: f5bigip.FastHttpAppPoolMemberArray{
				&f5bigip.FastHttpAppPoolMemberArgs{
					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(TC3GetGceServiceDiscovery.GceSdJson),
				pulumi.String(TC3.AzureSdJson),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;

return await Deployment.RunAsync(() => 
{
    var TC3 = F5BigIP.Fast.GetAzureServiceDiscovery.Invoke(new()
    {
        ResourceGroup = "testazurerg",
        SubscriptionId = "testazuresid",
        TagKey = "testazuretag",
        TagValue = "testazurevalue",
    });

    var TC3GetGceServiceDiscovery = F5BigIP.Fast.GetGceServiceDiscovery.Invoke(new()
    {
        TagKey = "testgcetag",
        TagValue = "testgcevalue",
        Region = "testgceregion",
    });

    var fastHttpsApp = new F5BigIP.FastHttpApp("fast_https_app", new()
    {
        Tenant = "fasthttptenant",
        Application = "fasthttpapp",
        VirtualServer = new F5BigIP.Inputs.FastHttpAppVirtualServerArgs
        {
            Ip = "10.30.40.44",
            Port = 443,
        },
        PoolMembers = new[]
        {
            new F5BigIP.Inputs.FastHttpAppPoolMemberArgs
            {
                Addresses = new[]
                {
                    "10.11.40.120",
                    "10.11.30.121",
                    "10.11.30.122",
                },
                Port = 80,
            },
        },
        ServiceDiscoveries = new[]
        {
            TC3GetGceServiceDiscovery.Apply(getGceServiceDiscoveryResult => getGceServiceDiscoveryResult.GceSdJson),
            TC3.Apply(getAzureServiceDiscoveryResult => getAzureServiceDiscoveryResult.AzureSdJson),
        },
    });

});
Copy
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.FastHttpApp;
import com.pulumi.f5bigip.FastHttpAppArgs;
import com.pulumi.f5bigip.inputs.FastHttpAppVirtualServerArgs;
import com.pulumi.f5bigip.inputs.FastHttpAppPoolMemberArgs;
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 TC3 = FastFunctions.getAzureServiceDiscovery(GetAzureServiceDiscoveryArgs.builder()
            .resourceGroup("testazurerg")
            .subscriptionId("testazuresid")
            .tagKey("testazuretag")
            .tagValue("testazurevalue")
            .build());

        final var TC3GetGceServiceDiscovery = FastFunctions.getGceServiceDiscovery(GetGceServiceDiscoveryArgs.builder()
            .tagKey("testgcetag")
            .tagValue("testgcevalue")
            .region("testgceregion")
            .build());

        var fastHttpsApp = new FastHttpApp("fastHttpsApp", FastHttpAppArgs.builder()
            .tenant("fasthttptenant")
            .application("fasthttpapp")
            .virtualServer(FastHttpAppVirtualServerArgs.builder()
                .ip("10.30.40.44")
                .port(443)
                .build())
            .poolMembers(FastHttpAppPoolMemberArgs.builder()
                .addresses(                
                    "10.11.40.120",
                    "10.11.30.121",
                    "10.11.30.122")
                .port(80)
                .build())
            .serviceDiscoveries(            
                TC3GetGceServiceDiscovery.applyValue(getGceServiceDiscoveryResult -> getGceServiceDiscoveryResult.gceSdJson()),
                TC3.applyValue(getAzureServiceDiscoveryResult -> getAzureServiceDiscoveryResult.azureSdJson()))
            .build());

    }
}
Copy
resources:
  fastHttpsApp:
    type: f5bigip:FastHttpApp
    name: fast_https_app
    properties:
      tenant: fasthttptenant
      application: fasthttpapp
      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:
        - ${TC3GetGceServiceDiscovery.gceSdJson}
        - ${TC3.azureSdJson}
variables:
  TC3:
    fn::invoke:
      function: f5bigip:fast:getAzureServiceDiscovery
      arguments:
        resourceGroup: testazurerg
        subscriptionId: testazuresid
        tagKey: testazuretag
        tagValue: testazurevalue
  TC3GetGceServiceDiscovery:
    fn::invoke:
      function: f5bigip:fast:getGceServiceDiscovery
      arguments:
        tagKey: testgcetag
        tagValue: testgcevalue
        region: testgceregion
Copy

Create FastHttpApp Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new FastHttpApp(name: string, args: FastHttpAppArgs, opts?: CustomResourceOptions);
@overload
def FastHttpApp(resource_name: str,
                args: FastHttpAppArgs,
                opts: Optional[ResourceOptions] = None)

@overload
def FastHttpApp(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                application: Optional[str] = None,
                tenant: Optional[str] = None,
                monitor: Optional[FastHttpAppMonitorArgs] = None,
                pool_members: Optional[Sequence[FastHttpAppPoolMemberArgs]] = None,
                existing_snat_pool: Optional[str] = None,
                existing_waf_security_policy: Optional[str] = None,
                fallback_persistence: Optional[str] = None,
                load_balancing_mode: Optional[str] = None,
                existing_monitor: Optional[str] = None,
                persistence_profile: Optional[str] = None,
                persistence_type: Optional[str] = None,
                existing_pool: Optional[str] = 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,
                endpoint_ltm_policies: Optional[Sequence[str]] = None,
                virtual_server: Optional[FastHttpAppVirtualServerArgs] = None,
                waf_security_policy: Optional[FastHttpAppWafSecurityPolicyArgs] = None)
func NewFastHttpApp(ctx *Context, name string, args FastHttpAppArgs, opts ...ResourceOption) (*FastHttpApp, error)
public FastHttpApp(string name, FastHttpAppArgs args, CustomResourceOptions? opts = null)
public FastHttpApp(String name, FastHttpAppArgs args)
public FastHttpApp(String name, FastHttpAppArgs args, CustomResourceOptions options)
type: f5bigip:FastHttpApp
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. FastHttpAppArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. FastHttpAppArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. FastHttpAppArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. FastHttpAppArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. FastHttpAppArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var fastHttpAppResource = new F5BigIP.FastHttpApp("fastHttpAppResource", new()
{
    Application = "string",
    Tenant = "string",
    Monitor = new F5BigIP.Inputs.FastHttpAppMonitorArgs
    {
        Interval = 0,
        MonitorAuth = false,
        Password = "string",
        Response = "string",
        SendString = "string",
        Username = "string",
    },
    PoolMembers = new[]
    {
        new F5BigIP.Inputs.FastHttpAppPoolMemberArgs
        {
            Addresses = new[]
            {
                "string",
            },
            ConnectionLimit = 0,
            Port = 0,
            PriorityGroup = 0,
            ShareNodes = false,
        },
    },
    ExistingSnatPool = "string",
    ExistingWafSecurityPolicy = "string",
    FallbackPersistence = "string",
    LoadBalancingMode = "string",
    ExistingMonitor = "string",
    PersistenceProfile = "string",
    PersistenceType = "string",
    ExistingPool = "string",
    SecurityLogProfiles = new[]
    {
        "string",
    },
    ServiceDiscoveries = new[]
    {
        "string",
    },
    SlowRampTime = 0,
    SnatPoolAddresses = new[]
    {
        "string",
    },
    EndpointLtmPolicies = new[]
    {
        "string",
    },
    VirtualServer = new F5BigIP.Inputs.FastHttpAppVirtualServerArgs
    {
        Ip = "string",
        Port = 0,
    },
    WafSecurityPolicy = new F5BigIP.Inputs.FastHttpAppWafSecurityPolicyArgs
    {
        Enable = false,
    },
});
Copy
example, err := f5bigip.NewFastHttpApp(ctx, "fastHttpAppResource", &f5bigip.FastHttpAppArgs{
	Application: pulumi.String("string"),
	Tenant:      pulumi.String("string"),
	Monitor: &f5bigip.FastHttpAppMonitorArgs{
		Interval:    pulumi.Int(0),
		MonitorAuth: pulumi.Bool(false),
		Password:    pulumi.String("string"),
		Response:    pulumi.String("string"),
		SendString:  pulumi.String("string"),
		Username:    pulumi.String("string"),
	},
	PoolMembers: f5bigip.FastHttpAppPoolMemberArray{
		&f5bigip.FastHttpAppPoolMemberArgs{
			Addresses: pulumi.StringArray{
				pulumi.String("string"),
			},
			ConnectionLimit: pulumi.Int(0),
			Port:            pulumi.Int(0),
			PriorityGroup:   pulumi.Int(0),
			ShareNodes:      pulumi.Bool(false),
		},
	},
	ExistingSnatPool:          pulumi.String("string"),
	ExistingWafSecurityPolicy: pulumi.String("string"),
	FallbackPersistence:       pulumi.String("string"),
	LoadBalancingMode:         pulumi.String("string"),
	ExistingMonitor:           pulumi.String("string"),
	PersistenceProfile:        pulumi.String("string"),
	PersistenceType:           pulumi.String("string"),
	ExistingPool:              pulumi.String("string"),
	SecurityLogProfiles: pulumi.StringArray{
		pulumi.String("string"),
	},
	ServiceDiscoveries: pulumi.StringArray{
		pulumi.String("string"),
	},
	SlowRampTime: pulumi.Int(0),
	SnatPoolAddresses: pulumi.StringArray{
		pulumi.String("string"),
	},
	EndpointLtmPolicies: pulumi.StringArray{
		pulumi.String("string"),
	},
	VirtualServer: &f5bigip.FastHttpAppVirtualServerArgs{
		Ip:   pulumi.String("string"),
		Port: pulumi.Int(0),
	},
	WafSecurityPolicy: &f5bigip.FastHttpAppWafSecurityPolicyArgs{
		Enable: pulumi.Bool(false),
	},
})
Copy
var fastHttpAppResource = new FastHttpApp("fastHttpAppResource", FastHttpAppArgs.builder()
    .application("string")
    .tenant("string")
    .monitor(FastHttpAppMonitorArgs.builder()
        .interval(0)
        .monitorAuth(false)
        .password("string")
        .response("string")
        .sendString("string")
        .username("string")
        .build())
    .poolMembers(FastHttpAppPoolMemberArgs.builder()
        .addresses("string")
        .connectionLimit(0)
        .port(0)
        .priorityGroup(0)
        .shareNodes(false)
        .build())
    .existingSnatPool("string")
    .existingWafSecurityPolicy("string")
    .fallbackPersistence("string")
    .loadBalancingMode("string")
    .existingMonitor("string")
    .persistenceProfile("string")
    .persistenceType("string")
    .existingPool("string")
    .securityLogProfiles("string")
    .serviceDiscoveries("string")
    .slowRampTime(0)
    .snatPoolAddresses("string")
    .endpointLtmPolicies("string")
    .virtualServer(FastHttpAppVirtualServerArgs.builder()
        .ip("string")
        .port(0)
        .build())
    .wafSecurityPolicy(FastHttpAppWafSecurityPolicyArgs.builder()
        .enable(false)
        .build())
    .build());
Copy
fast_http_app_resource = f5bigip.FastHttpApp("fastHttpAppResource",
    application="string",
    tenant="string",
    monitor={
        "interval": 0,
        "monitor_auth": False,
        "password": "string",
        "response": "string",
        "send_string": "string",
        "username": "string",
    },
    pool_members=[{
        "addresses": ["string"],
        "connection_limit": 0,
        "port": 0,
        "priority_group": 0,
        "share_nodes": False,
    }],
    existing_snat_pool="string",
    existing_waf_security_policy="string",
    fallback_persistence="string",
    load_balancing_mode="string",
    existing_monitor="string",
    persistence_profile="string",
    persistence_type="string",
    existing_pool="string",
    security_log_profiles=["string"],
    service_discoveries=["string"],
    slow_ramp_time=0,
    snat_pool_addresses=["string"],
    endpoint_ltm_policies=["string"],
    virtual_server={
        "ip": "string",
        "port": 0,
    },
    waf_security_policy={
        "enable": False,
    })
Copy
const fastHttpAppResource = new f5bigip.FastHttpApp("fastHttpAppResource", {
    application: "string",
    tenant: "string",
    monitor: {
        interval: 0,
        monitorAuth: false,
        password: "string",
        response: "string",
        sendString: "string",
        username: "string",
    },
    poolMembers: [{
        addresses: ["string"],
        connectionLimit: 0,
        port: 0,
        priorityGroup: 0,
        shareNodes: false,
    }],
    existingSnatPool: "string",
    existingWafSecurityPolicy: "string",
    fallbackPersistence: "string",
    loadBalancingMode: "string",
    existingMonitor: "string",
    persistenceProfile: "string",
    persistenceType: "string",
    existingPool: "string",
    securityLogProfiles: ["string"],
    serviceDiscoveries: ["string"],
    slowRampTime: 0,
    snatPoolAddresses: ["string"],
    endpointLtmPolicies: ["string"],
    virtualServer: {
        ip: "string",
        port: 0,
    },
    wafSecurityPolicy: {
        enable: false,
    },
});
Copy
type: f5bigip:FastHttpApp
properties:
    application: string
    endpointLtmPolicies:
        - string
    existingMonitor: string
    existingPool: string
    existingSnatPool: string
    existingWafSecurityPolicy: string
    fallbackPersistence: string
    loadBalancingMode: string
    monitor:
        interval: 0
        monitorAuth: false
        password: string
        response: string
        sendString: string
        username: string
    persistenceProfile: string
    persistenceType: string
    poolMembers:
        - addresses:
            - string
          connectionLimit: 0
          port: 0
          priorityGroup: 0
          shareNodes: false
    securityLogProfiles:
        - string
    serviceDiscoveries:
        - string
    slowRampTime: 0
    snatPoolAddresses:
        - string
    tenant: string
    virtualServer:
        ip: string
        port: 0
    wafSecurityPolicy:
        enable: false
Copy

FastHttpApp Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The FastHttpApp resource accepts the following input properties:

Application
This property is required.
Changes to this property will trigger replacement.
string
Name of the FAST HTTPS application.
Tenant
This property is required.
Changes to this property will trigger replacement.
string
Name of the FAST HTTPS application tenant.
EndpointLtmPolicies List<string>
List of LTM Policies to be applied FAST HTTP Application.
ExistingMonitor string
Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
ExistingPool string
Select an existing BIG-IP Pool
ExistingSnatPool string
Name of an existing BIG-IP SNAT pool.
ExistingWafSecurityPolicy string
Name of an existing WAF Security policy.
FallbackPersistence string
Type of fallback persistence record to be created for each new client connection.
LoadBalancingMode string
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.F5BigIP.Inputs.FastHttpAppMonitor
monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
PersistenceProfile string
Name of an existing BIG-IP persistence profile to be used.
PersistenceType string
Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
PoolMembers List<Pulumi.F5BigIP.Inputs.FastHttpAppPoolMember>
pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
SecurityLogProfiles List<string>
List of security log profiles to be used for FAST application
ServiceDiscoveries 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.
SlowRampTime int
Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
SnatPoolAddresses List<string>
List of address to be used for FAST-Generated SNAT Pool.
VirtualServer Pulumi.F5BigIP.Inputs.FastHttpAppVirtualServer
virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
WafSecurityPolicy Pulumi.F5BigIP.Inputs.FastHttpAppWafSecurityPolicy
waf_security_policy block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
Application
This property is required.
Changes to this property will trigger replacement.
string
Name of the FAST HTTPS application.
Tenant
This property is required.
Changes to this property will trigger replacement.
string
Name of the FAST HTTPS application tenant.
EndpointLtmPolicies []string
List of LTM Policies to be applied FAST HTTP Application.
ExistingMonitor string
Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
ExistingPool string
Select an existing BIG-IP Pool
ExistingSnatPool string
Name of an existing BIG-IP SNAT pool.
ExistingWafSecurityPolicy string
Name of an existing WAF Security policy.
FallbackPersistence string
Type of fallback persistence record to be created for each new client connection.
LoadBalancingMode string
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 FastHttpAppMonitorArgs
monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
PersistenceProfile string
Name of an existing BIG-IP persistence profile to be used.
PersistenceType string
Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
PoolMembers []FastHttpAppPoolMemberArgs
pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
SecurityLogProfiles []string
List of security log profiles to be used for FAST application
ServiceDiscoveries []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.
SlowRampTime int
Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
SnatPoolAddresses []string
List of address to be used for FAST-Generated SNAT Pool.
VirtualServer FastHttpAppVirtualServerArgs
virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
WafSecurityPolicy FastHttpAppWafSecurityPolicyArgs
waf_security_policy block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
application
This property is required.
Changes to this property will trigger replacement.
String
Name of the FAST HTTPS application.
tenant
This property is required.
Changes to this property will trigger replacement.
String
Name of the FAST HTTPS application tenant.
endpointLtmPolicies List<String>
List of LTM Policies to be applied FAST HTTP Application.
existingMonitor String
Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
existingPool String
Select an existing BIG-IP Pool
existingSnatPool String
Name of an existing BIG-IP SNAT pool.
existingWafSecurityPolicy String
Name of an existing WAF Security policy.
fallbackPersistence String
Type of fallback persistence record to be created for each new client connection.
loadBalancingMode String
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 FastHttpAppMonitor
monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
persistenceProfile String
Name of an existing BIG-IP persistence profile to be used.
persistenceType String
Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
poolMembers List<FastHttpAppPoolMember>
pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
securityLogProfiles List<String>
List of security log profiles to be used for FAST application
serviceDiscoveries 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.
slowRampTime Integer
Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
snatPoolAddresses List<String>
List of address to be used for FAST-Generated SNAT Pool.
virtualServer FastHttpAppVirtualServer
virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
wafSecurityPolicy FastHttpAppWafSecurityPolicy
waf_security_policy block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
application
This property is required.
Changes to this property will trigger replacement.
string
Name of the FAST HTTPS application.
tenant
This property is required.
Changes to this property will trigger replacement.
string
Name of the FAST HTTPS application tenant.
endpointLtmPolicies string[]
List of LTM Policies to be applied FAST HTTP Application.
existingMonitor string
Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
existingPool string
Select an existing BIG-IP Pool
existingSnatPool string
Name of an existing BIG-IP SNAT pool.
existingWafSecurityPolicy string
Name of an existing WAF Security policy.
fallbackPersistence string
Type of fallback persistence record to be created for each new client connection.
loadBalancingMode string
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 FastHttpAppMonitor
monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
persistenceProfile string
Name of an existing BIG-IP persistence profile to be used.
persistenceType string
Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
poolMembers FastHttpAppPoolMember[]
pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
securityLogProfiles string[]
List of security log profiles to be used for FAST application
serviceDiscoveries 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.
slowRampTime number
Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
snatPoolAddresses string[]
List of address to be used for FAST-Generated SNAT Pool.
virtualServer FastHttpAppVirtualServer
virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
wafSecurityPolicy FastHttpAppWafSecurityPolicy
waf_security_policy block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
application
This property is required.
Changes to this property will trigger replacement.
str
Name of the FAST HTTPS application.
tenant
This property is required.
Changes to this property will trigger replacement.
str
Name of the FAST HTTPS application tenant.
endpoint_ltm_policies Sequence[str]
List of LTM Policies to be applied FAST HTTP 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
Select an existing BIG-IP Pool
existing_snat_pool str
Name of an existing BIG-IP SNAT pool.
existing_waf_security_policy str
Name of an existing WAF Security policy.
fallback_persistence str
Type of fallback persistence record to be created for each new client connection.
load_balancing_mode str
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 FastHttpAppMonitorArgs
monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
persistence_profile str
Name of an existing BIG-IP persistence profile to be used.
persistence_type str
Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
pool_members Sequence[FastHttpAppPoolMemberArgs]
pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
security_log_profiles Sequence[str]
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_time int
Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
snat_pool_addresses Sequence[str]
List of address to be used for FAST-Generated SNAT Pool.
virtual_server FastHttpAppVirtualServerArgs
virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
waf_security_policy FastHttpAppWafSecurityPolicyArgs
waf_security_policy block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
application
This property is required.
Changes to this property will trigger replacement.
String
Name of the FAST HTTPS application.
tenant
This property is required.
Changes to this property will trigger replacement.
String
Name of the FAST HTTPS application tenant.
endpointLtmPolicies List<String>
List of LTM Policies to be applied FAST HTTP Application.
existingMonitor String
Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
existingPool String
Select an existing BIG-IP Pool
existingSnatPool String
Name of an existing BIG-IP SNAT pool.
existingWafSecurityPolicy String
Name of an existing WAF Security policy.
fallbackPersistence String
Type of fallback persistence record to be created for each new client connection.
loadBalancingMode String
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.
persistenceProfile String
Name of an existing BIG-IP persistence profile to be used.
persistenceType String
Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
poolMembers List<Property Map>
pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
securityLogProfiles List<String>
List of security log profiles to be used for FAST application
serviceDiscoveries 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.
slowRampTime Number
Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
snatPoolAddresses List<String>
List of address to be used for FAST-Generated SNAT Pool.
virtualServer Property Map
virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
wafSecurityPolicy Property Map
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 FastHttpApp resource produces the following output properties:

FastHttpJson string
Json payload for FAST HTTP application.
Id string
The provider-assigned unique ID for this managed resource.
FastHttpJson string
Json payload for FAST HTTP application.
Id string
The provider-assigned unique ID for this managed resource.
fastHttpJson String
Json payload for FAST HTTP application.
id String
The provider-assigned unique ID for this managed resource.
fastHttpJson string
Json payload for FAST HTTP application.
id string
The provider-assigned unique ID for this managed resource.
fast_http_json str
Json payload for FAST HTTP application.
id str
The provider-assigned unique ID for this managed resource.
fastHttpJson String
Json payload for FAST HTTP application.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing FastHttpApp Resource

Get an existing FastHttpApp 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?: FastHttpAppState, opts?: CustomResourceOptions): FastHttpApp
@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_waf_security_policy: Optional[str] = None,
        fallback_persistence: Optional[str] = None,
        fast_http_json: Optional[str] = None,
        load_balancing_mode: Optional[str] = None,
        monitor: Optional[FastHttpAppMonitorArgs] = None,
        persistence_profile: Optional[str] = None,
        persistence_type: Optional[str] = None,
        pool_members: Optional[Sequence[FastHttpAppPoolMemberArgs]] = 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,
        virtual_server: Optional[FastHttpAppVirtualServerArgs] = None,
        waf_security_policy: Optional[FastHttpAppWafSecurityPolicyArgs] = None) -> FastHttpApp
func GetFastHttpApp(ctx *Context, name string, id IDInput, state *FastHttpAppState, opts ...ResourceOption) (*FastHttpApp, error)
public static FastHttpApp Get(string name, Input<string> id, FastHttpAppState? state, CustomResourceOptions? opts = null)
public static FastHttpApp get(String name, Output<String> id, FastHttpAppState state, CustomResourceOptions options)
resources:  _:    type: f5bigip:FastHttpApp    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Application Changes to this property will trigger replacement. string
Name of the FAST HTTPS application.
EndpointLtmPolicies List<string>
List of LTM Policies to be applied FAST HTTP Application.
ExistingMonitor string
Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
ExistingPool string
Select an existing BIG-IP Pool
ExistingSnatPool string
Name of an existing BIG-IP SNAT pool.
ExistingWafSecurityPolicy string
Name of an existing WAF Security policy.
FallbackPersistence string
Type of fallback persistence record to be created for each new client connection.
FastHttpJson string
Json payload for FAST HTTP application.
LoadBalancingMode string
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.F5BigIP.Inputs.FastHttpAppMonitor
monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
PersistenceProfile string
Name of an existing BIG-IP persistence profile to be used.
PersistenceType string
Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
PoolMembers List<Pulumi.F5BigIP.Inputs.FastHttpAppPoolMember>
pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
SecurityLogProfiles List<string>
List of security log profiles to be used for FAST application
ServiceDiscoveries 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.
SlowRampTime int
Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
SnatPoolAddresses List<string>
List of address to be used for FAST-Generated SNAT Pool.
Tenant Changes to this property will trigger replacement. string
Name of the FAST HTTPS application tenant.
VirtualServer Pulumi.F5BigIP.Inputs.FastHttpAppVirtualServer
virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
WafSecurityPolicy Pulumi.F5BigIP.Inputs.FastHttpAppWafSecurityPolicy
waf_security_policy block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
Application Changes to this property will trigger replacement. string
Name of the FAST HTTPS application.
EndpointLtmPolicies []string
List of LTM Policies to be applied FAST HTTP Application.
ExistingMonitor string
Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
ExistingPool string
Select an existing BIG-IP Pool
ExistingSnatPool string
Name of an existing BIG-IP SNAT pool.
ExistingWafSecurityPolicy string
Name of an existing WAF Security policy.
FallbackPersistence string
Type of fallback persistence record to be created for each new client connection.
FastHttpJson string
Json payload for FAST HTTP application.
LoadBalancingMode string
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 FastHttpAppMonitorArgs
monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
PersistenceProfile string
Name of an existing BIG-IP persistence profile to be used.
PersistenceType string
Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
PoolMembers []FastHttpAppPoolMemberArgs
pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
SecurityLogProfiles []string
List of security log profiles to be used for FAST application
ServiceDiscoveries []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.
SlowRampTime int
Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
SnatPoolAddresses []string
List of address to be used for FAST-Generated SNAT Pool.
Tenant Changes to this property will trigger replacement. string
Name of the FAST HTTPS application tenant.
VirtualServer FastHttpAppVirtualServerArgs
virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
WafSecurityPolicy FastHttpAppWafSecurityPolicyArgs
waf_security_policy block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
application Changes to this property will trigger replacement. String
Name of the FAST HTTPS application.
endpointLtmPolicies List<String>
List of LTM Policies to be applied FAST HTTP Application.
existingMonitor String
Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
existingPool String
Select an existing BIG-IP Pool
existingSnatPool String
Name of an existing BIG-IP SNAT pool.
existingWafSecurityPolicy String
Name of an existing WAF Security policy.
fallbackPersistence String
Type of fallback persistence record to be created for each new client connection.
fastHttpJson String
Json payload for FAST HTTP application.
loadBalancingMode String
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 FastHttpAppMonitor
monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
persistenceProfile String
Name of an existing BIG-IP persistence profile to be used.
persistenceType String
Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
poolMembers List<FastHttpAppPoolMember>
pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
securityLogProfiles List<String>
List of security log profiles to be used for FAST application
serviceDiscoveries 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.
slowRampTime Integer
Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
snatPoolAddresses List<String>
List of address to be used for FAST-Generated SNAT Pool.
tenant Changes to this property will trigger replacement. String
Name of the FAST HTTPS application tenant.
virtualServer FastHttpAppVirtualServer
virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
wafSecurityPolicy FastHttpAppWafSecurityPolicy
waf_security_policy block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
application Changes to this property will trigger replacement. string
Name of the FAST HTTPS application.
endpointLtmPolicies string[]
List of LTM Policies to be applied FAST HTTP Application.
existingMonitor string
Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
existingPool string
Select an existing BIG-IP Pool
existingSnatPool string
Name of an existing BIG-IP SNAT pool.
existingWafSecurityPolicy string
Name of an existing WAF Security policy.
fallbackPersistence string
Type of fallback persistence record to be created for each new client connection.
fastHttpJson string
Json payload for FAST HTTP application.
loadBalancingMode string
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 FastHttpAppMonitor
monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
persistenceProfile string
Name of an existing BIG-IP persistence profile to be used.
persistenceType string
Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
poolMembers FastHttpAppPoolMember[]
pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
securityLogProfiles string[]
List of security log profiles to be used for FAST application
serviceDiscoveries 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.
slowRampTime number
Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
snatPoolAddresses string[]
List of address to be used for FAST-Generated SNAT Pool.
tenant Changes to this property will trigger replacement. string
Name of the FAST HTTPS application tenant.
virtualServer FastHttpAppVirtualServer
virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
wafSecurityPolicy FastHttpAppWafSecurityPolicy
waf_security_policy block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
application Changes to this property will trigger replacement. str
Name of the FAST HTTPS application.
endpoint_ltm_policies Sequence[str]
List of LTM Policies to be applied FAST HTTP 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
Select an existing BIG-IP Pool
existing_snat_pool str
Name of an existing BIG-IP SNAT pool.
existing_waf_security_policy str
Name of an existing WAF Security policy.
fallback_persistence str
Type of fallback persistence record to be created for each new client connection.
fast_http_json str
Json payload for FAST HTTP application.
load_balancing_mode str
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 FastHttpAppMonitorArgs
monitor block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.
persistence_profile str
Name of an existing BIG-IP persistence profile to be used.
persistence_type str
Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
pool_members Sequence[FastHttpAppPoolMemberArgs]
pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
security_log_profiles Sequence[str]
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_time int
Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
snat_pool_addresses Sequence[str]
List of address to be used for FAST-Generated SNAT Pool.
tenant Changes to this property will trigger replacement. str
Name of the FAST HTTPS application tenant.
virtual_server FastHttpAppVirtualServerArgs
virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
waf_security_policy FastHttpAppWafSecurityPolicyArgs
waf_security_policy block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.
application Changes to this property will trigger replacement. String
Name of the FAST HTTPS application.
endpointLtmPolicies List<String>
List of LTM Policies to be applied FAST HTTP Application.
existingMonitor String
Name of an existing BIG-IP HTTPS pool monitor. Monitors are used to determine the health of the application on each server.
existingPool String
Select an existing BIG-IP Pool
existingSnatPool String
Name of an existing BIG-IP SNAT pool.
existingWafSecurityPolicy String
Name of an existing WAF Security policy.
fallbackPersistence String
Type of fallback persistence record to be created for each new client connection.
fastHttpJson String
Json payload for FAST HTTP application.
loadBalancingMode String
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.
persistenceProfile String
Name of an existing BIG-IP persistence profile to be used.
persistenceType String
Type of persistence profile to be created. Using this option will enable use of FAST generated persistence profiles.
poolMembers List<Property Map>
pool_members block takes input for FAST-Generated Pool. See Pool Members below for more details.
securityLogProfiles List<String>
List of security log profiles to be used for FAST application
serviceDiscoveries 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.
slowRampTime Number
Slow ramp temporarily throttles the number of connections to a new pool member. The recommended value is 300 seconds
snatPoolAddresses List<String>
List of address to be used for FAST-Generated SNAT Pool.
tenant Changes to this property will trigger replacement. String
Name of the FAST HTTPS application tenant.
virtualServer Property Map
virtual_server block will provide ip and port options to be used for virtual server. See virtual server below for more details.
wafSecurityPolicy Property Map
waf_security_policy block takes input for FAST-Generated WAF Security Policy. See WAF Security Policy below for more details.

Supporting Types

FastHttpAppMonitor
, FastHttpAppMonitorArgs

Interval int
Set the time between health checks,in seconds for FAST-Generated Pool Monitor.
MonitorAuth bool
set true if the servers require login credentials for web access on FAST-Generated Pool Monitor. default is false.
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.
SendString 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.
MonitorAuth bool
set true if the servers require login credentials for web access on FAST-Generated Pool Monitor. default is false.
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.
SendString 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.
monitorAuth Boolean
set true if the servers require login credentials for web access on FAST-Generated Pool Monitor. default is false.
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.
sendString 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.
monitorAuth boolean
set true if the servers require login credentials for web access on FAST-Generated Pool Monitor. default is false.
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.
sendString 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 is false.
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.
monitorAuth Boolean
set true if the servers require login credentials for web access on FAST-Generated Pool Monitor. default is false.
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.
sendString 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.

FastHttpAppPoolMember
, FastHttpAppPoolMemberArgs

Addresses This property is required. List<string>
List of server address to be used for FAST-Generated Pool.
ConnectionLimit int
connectionLimit value to be used for FAST-Generated Pool.
Port int
port number of serviceport to be used for FAST-Generated Pool.
PriorityGroup int
priorityGroup value to be used for FAST-Generated Pool.
ShareNodes bool
shareNodes value to be used for FAST-Generated Pool.
Addresses This property is required. []string
List of server address to be used for FAST-Generated Pool.
ConnectionLimit int
connectionLimit value to be used for FAST-Generated Pool.
Port int
port number of serviceport to be used for FAST-Generated Pool.
PriorityGroup int
priorityGroup value to be used for FAST-Generated Pool.
ShareNodes bool
shareNodes value to be used for FAST-Generated Pool.
addresses This property is required. List<String>
List of server address to be used for FAST-Generated Pool.
connectionLimit Integer
connectionLimit value to be used for FAST-Generated Pool.
port Integer
port number of serviceport to be used for FAST-Generated Pool.
priorityGroup Integer
priorityGroup value to be used for FAST-Generated Pool.
shareNodes Boolean
shareNodes value to be used for FAST-Generated Pool.
addresses This property is required. string[]
List of server address to be used for FAST-Generated Pool.
connectionLimit number
connectionLimit value to be used for FAST-Generated Pool.
port number
port number of serviceport to be used for FAST-Generated Pool.
priorityGroup number
priorityGroup value to be used for FAST-Generated Pool.
shareNodes boolean
shareNodes value to be used for FAST-Generated Pool.
addresses This property is required. 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.
share_nodes bool
shareNodes value to be used for FAST-Generated Pool.
addresses This property is required. List<String>
List of server address to be used for FAST-Generated Pool.
connectionLimit Number
connectionLimit value to be used for FAST-Generated Pool.
port Number
port number of serviceport to be used for FAST-Generated Pool.
priorityGroup Number
priorityGroup value to be used for FAST-Generated Pool.
shareNodes Boolean
shareNodes value to be used for FAST-Generated Pool.

FastHttpAppVirtualServer
, FastHttpAppVirtualServerArgs

Ip This property is required. string
IP4/IPv6 address to be used for virtual server ex: 10.1.1.1
Port This property is required. int
Port number to used for accessing virtual server/application
Ip This property is required. string
IP4/IPv6 address to be used for virtual server ex: 10.1.1.1
Port This property is required. int
Port number to used for accessing virtual server/application
ip This property is required. String
IP4/IPv6 address to be used for virtual server ex: 10.1.1.1
port This property is required. Integer
Port number to used for accessing virtual server/application
ip This property is required. string
IP4/IPv6 address to be used for virtual server ex: 10.1.1.1
port This property is required. number
Port number to used for accessing virtual server/application
ip This property is required. str
IP4/IPv6 address to be used for virtual server ex: 10.1.1.1
port This property is required. int
Port number to used for accessing virtual server/application
ip This property is required. String
IP4/IPv6 address to be used for virtual server ex: 10.1.1.1
port This property is required. Number
Port number to used for accessing virtual server/application

FastHttpAppWafSecurityPolicy
, FastHttpAppWafSecurityPolicyArgs

Enable This property is required. bool
Setting true will enable FAST to create WAF Security Policy.
Enable This property is required. bool
Setting true will enable FAST to create WAF Security Policy.
enable This property is required. Boolean
Setting true will enable FAST to create WAF Security Policy.
enable This property is required. boolean
Setting true will enable FAST to create WAF Security Policy.
enable This property is required. bool
Setting true will enable FAST to create WAF Security Policy.
enable This property is required. 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.