f5bigip.FastHttpApp
Explore with Pulumi AI
f5bigip.FastHttpApp
This resource will create and manage FAST HTTP applications on BIG-IP
Example Usage
using System.Collections.Generic;
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;
return await Deployment.RunAsync(() =>
{
var fastHttpApp = new F5BigIP.FastHttpApp("fastHttpApp", new()
{
Application = "fasthttpapp",
Tenant = "fasthttptenant",
VirtualServer = new F5BigIP.Inputs.FastHttpAppVirtualServerArgs
{
Ip = "10.30.30.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.NewFastHttpApp(ctx, "fastHttpApp", &f5bigip.FastHttpAppArgs{
Application: pulumi.String("fasthttpapp"),
Tenant: pulumi.String("fasthttptenant"),
VirtualServer: &f5bigip.FastHttpAppVirtualServerArgs{
Ip: pulumi.String("10.30.30.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.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()
.application("fasthttpapp")
.tenant("fasthttptenant")
.virtualServer(FastHttpAppVirtualServerArgs.builder()
.ip("10.30.30.44")
.port(443)
.build())
.build());
}
}
import pulumi
import pulumi_f5bigip as f5bigip
fast_http_app = f5bigip.FastHttpApp("fastHttpApp",
application="fasthttpapp",
tenant="fasthttptenant",
virtual_server=f5bigip.FastHttpAppVirtualServerArgs(
ip="10.30.30.44",
port=443,
))
import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";
const fastHttpApp = new f5bigip.FastHttpApp("fastHttpApp", {
application: "fasthttpapp",
tenant: "fasthttptenant",
virtualServer: {
ip: "10.30.30.44",
port: 443,
},
});
resources:
fastHttpApp:
type: f5bigip:FastHttpApp
properties:
application: fasthttpapp
tenant: fasthttptenant
virtualServer:
ip: 10.30.30.44
port: 443
Create FastHttpApp Resource
new FastHttpApp(name: string, args: FastHttpAppArgs, opts?: CustomResourceOptions);
@overload
def FastHttpApp(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_waf_security_policy: Optional[str] = None,
load_balancing_mode: Optional[str] = None,
monitor: Optional[FastHttpAppMonitorArgs] = None,
pool_members: Optional[Sequence[FastHttpAppPoolMemberArgs]] = None,
security_log_profiles: Optional[Sequence[str]] = None,
service_discoveries: Optional[Sequence[FastHttpAppServiceDiscoveryArgs]] = 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)
@overload
def FastHttpApp(resource_name: str,
args: FastHttpAppArgs,
opts: Optional[ResourceOptions] = 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.
- name string
- The unique name of the resource.
- args FastHttpAppArgs
- 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 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 string
- The unique name of the resource.
- args FastHttpAppArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FastHttpAppArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FastHttpAppArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
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
The FastHttpApp 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 HTTP 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 Select an existing BIG-IP Pool
- Existing
Snat stringPool Name of an existing BIG-IP SNAT pool.
- 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 Http App Monitor Args monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- Pool
Members List<Pulumi.F5Big IP. Inputs. Fast Http App Pool Member Args> 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<Pulumi.F5Big IP. Inputs. Fast Http App Service Discovery Args> service_discovery
block to Automatically Discover Pool Members with Service Discovery. See Service Discovery below for more details.- 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.
- Virtual
Server Pulumi.F5Big IP. Inputs. Fast Http 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 Pulumi.Policy F5Big IP. Inputs. Fast Http 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 []stringPolicies List of LTM Policies to be applied FAST HTTP 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 Select an existing BIG-IP Pool
- Existing
Snat stringPool Name of an existing BIG-IP SNAT pool.
- 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
Http App Monitor Args monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- Pool
Members []FastHttp 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 []FastHttp App Service Discovery Args service_discovery
block to Automatically Discover Pool Members with Service Discovery. See Service Discovery below for more details.- 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.
- Virtual
Server FastHttp 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 Http 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 HTTP 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 Select an existing BIG-IP Pool
- existing
Snat StringPool Name of an existing BIG-IP SNAT pool.
- 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
Http App Monitor Args monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- pool
Members List<FastHttp App Pool Member Args> 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<FastHttp App Service Discovery Args> service_discovery
block to Automatically Discover Pool Members with Service Discovery. See Service Discovery below for more details.- 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.
- virtual
Server FastHttp 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 Http 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 string[]Policies List of LTM Policies to be applied FAST HTTP 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 Select an existing BIG-IP Pool
- existing
Snat stringPool Name of an existing BIG-IP SNAT pool.
- 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
Http App Monitor Args monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- pool
Members FastHttp App Pool Member Args[] 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 FastHttp App Service Discovery Args[] service_discovery
block to Automatically Discover Pool Members with Service Discovery. See Service Discovery below for more details.- 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.
- virtual
Server FastHttp 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 Http 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 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 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_ strpool Name of an existing BIG-IP SNAT pool.
- 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
Http App Monitor Args monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- pool_
members Sequence[FastHttp 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[FastHttp App Service Discovery Args] service_discovery
block to Automatically Discover Pool Members with Service Discovery. See Service Discovery below for more details.- 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.
- virtual_
server FastHttp 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 Http 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 HTTP 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 Select an existing BIG-IP Pool
- existing
Snat StringPool Name of an existing BIG-IP SNAT pool.
- 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<Property Map> service_discovery
block to Automatically Discover Pool Members with Service Discovery. See Service Discovery below for more details.- 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.
- 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 FastHttpApp resource produces the following output properties:
- Fast
Http stringJson Json payload for FAST HTTP application.
- Id string
The provider-assigned unique ID for this managed resource.
- Fast
Http stringJson Json payload for FAST HTTP application.
- Id string
The provider-assigned unique ID for this managed resource.
- fast
Http StringJson Json payload for FAST HTTP application.
- id String
The provider-assigned unique ID for this managed resource.
- fast
Http stringJson Json payload for FAST HTTP application.
- id string
The provider-assigned unique ID for this managed resource.
- fast_
http_ strjson Json payload for FAST HTTP application.
- id str
The provider-assigned unique ID for this managed resource.
- fast
Http StringJson 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,
fast_http_json: Optional[str] = None,
load_balancing_mode: Optional[str] = None,
monitor: Optional[FastHttpAppMonitorArgs] = None,
pool_members: Optional[Sequence[FastHttpAppPoolMemberArgs]] = None,
security_log_profiles: Optional[Sequence[str]] = None,
service_discoveries: Optional[Sequence[FastHttpAppServiceDiscoveryArgs]] = 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)
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 HTTP 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 Select an existing BIG-IP Pool
- Existing
Snat stringPool Name of an existing BIG-IP SNAT pool.
- Existing
Waf stringSecurity Policy Name of an existing WAF Security policy.
- Fast
Http stringJson Json payload for FAST HTTP 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 Http App Monitor Args monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- Pool
Members List<Pulumi.F5Big IP. Inputs. Fast Http App Pool Member Args> 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<Pulumi.F5Big IP. Inputs. Fast Http App Service Discovery Args> service_discovery
block to Automatically Discover Pool Members with Service Discovery. See Service Discovery below for more details.- 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.
- Virtual
Server Pulumi.F5Big IP. Inputs. Fast Http 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 Pulumi.Policy F5Big IP. Inputs. Fast Http 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 []stringPolicies List of LTM Policies to be applied FAST HTTP 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 Select an existing BIG-IP Pool
- Existing
Snat stringPool Name of an existing BIG-IP SNAT pool.
- Existing
Waf stringSecurity Policy Name of an existing WAF Security policy.
- Fast
Http stringJson Json payload for FAST HTTP 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
Http App Monitor Args monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- Pool
Members []FastHttp 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 []FastHttp App Service Discovery Args service_discovery
block to Automatically Discover Pool Members with Service Discovery. See Service Discovery below for more details.- 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.
- Virtual
Server FastHttp 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 Http 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 HTTP 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 Select an existing BIG-IP Pool
- existing
Snat StringPool Name of an existing BIG-IP SNAT pool.
- existing
Waf StringSecurity Policy Name of an existing WAF Security policy.
- fast
Http StringJson Json payload for FAST HTTP 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
Http App Monitor Args monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- pool
Members List<FastHttp App Pool Member Args> 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<FastHttp App Service Discovery Args> service_discovery
block to Automatically Discover Pool Members with Service Discovery. See Service Discovery below for more details.- 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.
- virtual
Server FastHttp 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 Http 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 string[]Policies List of LTM Policies to be applied FAST HTTP 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 Select an existing BIG-IP Pool
- existing
Snat stringPool Name of an existing BIG-IP SNAT pool.
- existing
Waf stringSecurity Policy Name of an existing WAF Security policy.
- fast
Http stringJson Json payload for FAST HTTP 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
Http App Monitor Args monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- pool
Members FastHttp App Pool Member Args[] 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 FastHttp App Service Discovery Args[] service_discovery
block to Automatically Discover Pool Members with Service Discovery. See Service Discovery below for more details.- 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.
- virtual
Server FastHttp 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 Http 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 str
Name of the FAST HTTPS application.
- endpoint_
ltm_ Sequence[str]policies 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_ strpool Name of an existing BIG-IP SNAT pool.
- existing_
waf_ strsecurity_ policy Name of an existing WAF Security policy.
- fast_
http_ strjson Json payload for FAST HTTP 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
Http App Monitor Args monitor
block takes input for FAST-Generated Pool Monitor. See Pool Monitor below for more details.- pool_
members Sequence[FastHttp 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[FastHttp App Service Discovery Args] service_discovery
block to Automatically Discover Pool Members with Service Discovery. See Service Discovery below for more details.- 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.
- virtual_
server FastHttp 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 Http 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 HTTP 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 Select an existing BIG-IP Pool
- existing
Snat StringPool Name of an existing BIG-IP SNAT pool.
- existing
Waf StringSecurity Policy Name of an existing WAF Security policy.
- fast
Http StringJson Json payload for FAST HTTP 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<Property Map> service_discovery
block to Automatically Discover Pool Members with Service Discovery. See Service Discovery below for more details.- 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.
- 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
FastHttpAppMonitor
- 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.
FastHttpAppPoolMember
- 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.
FastHttpAppServiceDiscovery
- Sd
Port int port number of serviceport to be used for FAST-Generated Pool.
- Sd
Type string service discovery account type, options [
aws
,azure
,gce
]- Sd
Address stringRealm Specifies whether to look for public or private IP addresses. Default :
private
- Sd
Aws stringAccess Key Information for discovering AWS nodes that are not in the same region as your BIG-IP.
- Sd
Aws stringRegion Empty string (default) means region in which ADC is running.
- Sd
Aws stringSecret Access Key Will be stored in the declaration as an encrypted string.
- Sd
Aws stringTag Key The tag key associated with the node to add to this pool.
- Sd
Aws stringTag Val The tag value associated with the node to add to this pool.
- Sd
Azure stringDirectory Id Azure Active Directory ID (AKA tenant ID).
- Sd
Azure stringResource Group Azure Resource Group name.
- Sd
Azure stringResource Id ID of resource to find nodes by.
- Sd
Azure stringSubscription Id Azure subscription ID.
- Sd
Azure stringTag Key The tag key associated with the node to add to this pool.
- Sd
Azure stringTag Val The tag value associated with the node to add to this pool.
- Sd
Gce stringRegion Empty string (default) means region in which ADC is running.
- Sd
Gce stringTag Key The tag key associated with the node to add to this pool
- Sd
Gce stringTag Val The tag value associated with the node to add to this pool.
- Sd
Undetectable stringAction Action to take when node cannot be detected. Default
remove
.
- Sd
Port int port number of serviceport to be used for FAST-Generated Pool.
- Sd
Type string service discovery account type, options [
aws
,azure
,gce
]- Sd
Address stringRealm Specifies whether to look for public or private IP addresses. Default :
private
- Sd
Aws stringAccess Key Information for discovering AWS nodes that are not in the same region as your BIG-IP.
- Sd
Aws stringRegion Empty string (default) means region in which ADC is running.
- Sd
Aws stringSecret Access Key Will be stored in the declaration as an encrypted string.
- Sd
Aws stringTag Key The tag key associated with the node to add to this pool.
- Sd
Aws stringTag Val The tag value associated with the node to add to this pool.
- Sd
Azure stringDirectory Id Azure Active Directory ID (AKA tenant ID).
- Sd
Azure stringResource Group Azure Resource Group name.
- Sd
Azure stringResource Id ID of resource to find nodes by.
- Sd
Azure stringSubscription Id Azure subscription ID.
- Sd
Azure stringTag Key The tag key associated with the node to add to this pool.
- Sd
Azure stringTag Val The tag value associated with the node to add to this pool.
- Sd
Gce stringRegion Empty string (default) means region in which ADC is running.
- Sd
Gce stringTag Key The tag key associated with the node to add to this pool
- Sd
Gce stringTag Val The tag value associated with the node to add to this pool.
- Sd
Undetectable stringAction Action to take when node cannot be detected. Default
remove
.
- sd
Port Integer port number of serviceport to be used for FAST-Generated Pool.
- sd
Type String service discovery account type, options [
aws
,azure
,gce
]- sd
Address StringRealm Specifies whether to look for public or private IP addresses. Default :
private
- sd
Aws StringAccess Key Information for discovering AWS nodes that are not in the same region as your BIG-IP.
- sd
Aws StringRegion Empty string (default) means region in which ADC is running.
- sd
Aws StringSecret Access Key Will be stored in the declaration as an encrypted string.
- sd
Aws StringTag Key The tag key associated with the node to add to this pool.
- sd
Aws StringTag Val The tag value associated with the node to add to this pool.
- sd
Azure StringDirectory Id Azure Active Directory ID (AKA tenant ID).
- sd
Azure StringResource Group Azure Resource Group name.
- sd
Azure StringResource Id ID of resource to find nodes by.
- sd
Azure StringSubscription Id Azure subscription ID.
- sd
Azure StringTag Key The tag key associated with the node to add to this pool.
- sd
Azure StringTag Val The tag value associated with the node to add to this pool.
- sd
Gce StringRegion Empty string (default) means region in which ADC is running.
- sd
Gce StringTag Key The tag key associated with the node to add to this pool
- sd
Gce StringTag Val The tag value associated with the node to add to this pool.
- sd
Undetectable StringAction Action to take when node cannot be detected. Default
remove
.
- sd
Port number port number of serviceport to be used for FAST-Generated Pool.
- sd
Type string service discovery account type, options [
aws
,azure
,gce
]- sd
Address stringRealm Specifies whether to look for public or private IP addresses. Default :
private
- sd
Aws stringAccess Key Information for discovering AWS nodes that are not in the same region as your BIG-IP.
- sd
Aws stringRegion Empty string (default) means region in which ADC is running.
- sd
Aws stringSecret Access Key Will be stored in the declaration as an encrypted string.
- sd
Aws stringTag Key The tag key associated with the node to add to this pool.
- sd
Aws stringTag Val The tag value associated with the node to add to this pool.
- sd
Azure stringDirectory Id Azure Active Directory ID (AKA tenant ID).
- sd
Azure stringResource Group Azure Resource Group name.
- sd
Azure stringResource Id ID of resource to find nodes by.
- sd
Azure stringSubscription Id Azure subscription ID.
- sd
Azure stringTag Key The tag key associated with the node to add to this pool.
- sd
Azure stringTag Val The tag value associated with the node to add to this pool.
- sd
Gce stringRegion Empty string (default) means region in which ADC is running.
- sd
Gce stringTag Key The tag key associated with the node to add to this pool
- sd
Gce stringTag Val The tag value associated with the node to add to this pool.
- sd
Undetectable stringAction Action to take when node cannot be detected. Default
remove
.
- sd_
port int port number of serviceport to be used for FAST-Generated Pool.
- sd_
type str service discovery account type, options [
aws
,azure
,gce
]- sd_
address_ strrealm Specifies whether to look for public or private IP addresses. Default :
private
- sd_
aws_ straccess_ key Information for discovering AWS nodes that are not in the same region as your BIG-IP.
- sd_
aws_ strregion Empty string (default) means region in which ADC is running.
- sd_
aws_ strsecret_ access_ key Will be stored in the declaration as an encrypted string.
- sd_
aws_ strtag_ key The tag key associated with the node to add to this pool.
- sd_
aws_ strtag_ val The tag value associated with the node to add to this pool.
- sd_
azure_ strdirectory_ id Azure Active Directory ID (AKA tenant ID).
- sd_
azure_ strresource_ group Azure Resource Group name.
- sd_
azure_ strresource_ id ID of resource to find nodes by.
- sd_
azure_ strsubscription_ id Azure subscription ID.
- sd_
azure_ strtag_ key The tag key associated with the node to add to this pool.
- sd_
azure_ strtag_ val The tag value associated with the node to add to this pool.
- sd_
gce_ strregion Empty string (default) means region in which ADC is running.
- sd_
gce_ strtag_ key The tag key associated with the node to add to this pool
- sd_
gce_ strtag_ val The tag value associated with the node to add to this pool.
- sd_
undetectable_ straction Action to take when node cannot be detected. Default
remove
.
- sd
Port Number port number of serviceport to be used for FAST-Generated Pool.
- sd
Type String service discovery account type, options [
aws
,azure
,gce
]- sd
Address StringRealm Specifies whether to look for public or private IP addresses. Default :
private
- sd
Aws StringAccess Key Information for discovering AWS nodes that are not in the same region as your BIG-IP.
- sd
Aws StringRegion Empty string (default) means region in which ADC is running.
- sd
Aws StringSecret Access Key Will be stored in the declaration as an encrypted string.
- sd
Aws StringTag Key The tag key associated with the node to add to this pool.
- sd
Aws StringTag Val The tag value associated with the node to add to this pool.
- sd
Azure StringDirectory Id Azure Active Directory ID (AKA tenant ID).
- sd
Azure StringResource Group Azure Resource Group name.
- sd
Azure StringResource Id ID of resource to find nodes by.
- sd
Azure StringSubscription Id Azure subscription ID.
- sd
Azure StringTag Key The tag key associated with the node to add to this pool.
- sd
Azure StringTag Val The tag value associated with the node to add to this pool.
- sd
Gce StringRegion Empty string (default) means region in which ADC is running.
- sd
Gce StringTag Key The tag key associated with the node to add to this pool
- sd
Gce StringTag Val The tag value associated with the node to add to this pool.
- sd
Undetectable StringAction Action to take when node cannot be detected. Default
remove
.
FastHttpAppVirtualServer
FastHttpAppWafSecurityPolicy
- 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.