ovh.IpLoadBalancing.HttpFrontend
Creates a backend HTTP server group (frontend) to be used by loadbalancing frontend(s)
Example Usage
using System.Collections.Generic;
using Pulumi;
using Ovh = Lbrlabs.PulumiPackage.Ovh;
using Ovh = Pulumi.Ovh;
return await Deployment.RunAsync(() =>
{
var lb = Ovh.IpLoadBalancing.GetIpLoadBalancing.Invoke(new()
{
ServiceName = "ip-1.2.3.4",
State = "ok",
});
var farm80 = new Ovh.IpLoadBalancing.HttpFarm("farm80", new()
{
DisplayName = "ingress-8080-gra",
Port = 80,
ServiceName = lb.Apply(getIpLoadBalancingResult => getIpLoadBalancingResult.ServiceName),
Zone = "all",
});
var testfrontend = new Ovh.IpLoadBalancing.HttpFrontend("testfrontend", new()
{
DefaultFarmId = farm80.Id,
DisplayName = "ingress-8080-gra",
Port = "80,443",
ServiceName = lb.Apply(getIpLoadBalancingResult => getIpLoadBalancingResult.ServiceName),
Zone = "all",
});
});
package main
import (
"github.com/lbrlabs/pulumi-ovh/sdk/go/ovh/IpLoadBalancing"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
lb, err := IpLoadBalancing.GetIpLoadBalancing(ctx, &iploadbalancing.GetIpLoadBalancingArgs{
ServiceName: pulumi.StringRef("ip-1.2.3.4"),
State: pulumi.StringRef("ok"),
}, nil)
if err != nil {
return err
}
farm80, err := IpLoadBalancing.NewHttpFarm(ctx, "farm80", &IpLoadBalancing.HttpFarmArgs{
DisplayName: pulumi.String("ingress-8080-gra"),
Port: pulumi.Int(80),
ServiceName: *pulumi.String(lb.ServiceName),
Zone: pulumi.String("all"),
})
if err != nil {
return err
}
_, err = IpLoadBalancing.NewHttpFrontend(ctx, "testfrontend", &IpLoadBalancing.HttpFrontendArgs{
DefaultFarmId: farm80.ID(),
DisplayName: pulumi.String("ingress-8080-gra"),
Port: pulumi.String("80,443"),
ServiceName: *pulumi.String(lb.ServiceName),
Zone: pulumi.String("all"),
})
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.ovh.IpLoadBalancing.IpLoadBalancingFunctions;
import com.pulumi.ovh.IpLoadBalancing.inputs.GetIpLoadBalancingArgs;
import com.pulumi.ovh.IpLoadBalancing.HttpFarm;
import com.pulumi.ovh.IpLoadBalancing.HttpFarmArgs;
import com.pulumi.ovh.IpLoadBalancing.HttpFrontend;
import com.pulumi.ovh.IpLoadBalancing.HttpFrontendArgs;
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 lb = IpLoadBalancingFunctions.getIpLoadBalancing(GetIpLoadBalancingArgs.builder()
.serviceName("ip-1.2.3.4")
.state("ok")
.build());
var farm80 = new HttpFarm("farm80", HttpFarmArgs.builder()
.displayName("ingress-8080-gra")
.port(80)
.serviceName(lb.applyValue(getIpLoadBalancingResult -> getIpLoadBalancingResult.serviceName()))
.zone("all")
.build());
var testfrontend = new HttpFrontend("testfrontend", HttpFrontendArgs.builder()
.defaultFarmId(farm80.id())
.displayName("ingress-8080-gra")
.port("80,443")
.serviceName(lb.applyValue(getIpLoadBalancingResult -> getIpLoadBalancingResult.serviceName()))
.zone("all")
.build());
}
}
import pulumi
import lbrlabs_pulumi_ovh as ovh
import pulumi_ovh as ovh
lb = ovh.IpLoadBalancing.get_ip_load_balancing(service_name="ip-1.2.3.4",
state="ok")
farm80 = ovh.ip_load_balancing.HttpFarm("farm80",
display_name="ingress-8080-gra",
port=80,
service_name=lb.service_name,
zone="all")
testfrontend = ovh.ip_load_balancing.HttpFrontend("testfrontend",
default_farm_id=farm80.id,
display_name="ingress-8080-gra",
port="80,443",
service_name=lb.service_name,
zone="all")
import * as pulumi from "@pulumi/pulumi";
import * as ovh from "@lbrlabs/pulumi-ovh";
import * as ovh from "@pulumi/ovh";
const lb = ovh.IpLoadBalancing.getIpLoadBalancing({
serviceName: "ip-1.2.3.4",
state: "ok",
});
const farm80 = new ovh.iploadbalancing.HttpFarm("farm80", {
displayName: "ingress-8080-gra",
port: 80,
serviceName: lb.then(lb => lb.serviceName),
zone: "all",
});
const testfrontend = new ovh.iploadbalancing.HttpFrontend("testfrontend", {
defaultFarmId: farm80.id,
displayName: "ingress-8080-gra",
port: "80,443",
serviceName: lb.then(lb => lb.serviceName),
zone: "all",
});
resources:
farm80:
type: ovh:IpLoadBalancing:HttpFarm
properties:
displayName: ingress-8080-gra
port: 80
serviceName: ${lb.serviceName}
zone: all
testfrontend:
type: ovh:IpLoadBalancing:HttpFrontend
properties:
defaultFarmId: ${farm80.id}
displayName: ingress-8080-gra
port: 80,443
serviceName: ${lb.serviceName}
zone: all
variables:
lb:
fn::invoke:
Function: ovh:IpLoadBalancing:getIpLoadBalancing
Arguments:
serviceName: ip-1.2.3.4
state: ok
With HTTP Header
using System.Collections.Generic;
using Pulumi;
using Ovh = Lbrlabs.PulumiPackage.Ovh;
using Ovh = Pulumi.Ovh;
return await Deployment.RunAsync(() =>
{
var lb = Ovh.IpLoadBalancing.GetIpLoadBalancing.Invoke(new()
{
ServiceName = "ip-1.2.3.4",
State = "ok",
});
var farm80 = new Ovh.IpLoadBalancing.HttpFarm("farm80", new()
{
DisplayName = "ingress-8080-gra",
Port = 80,
ServiceName = lb.Apply(getIpLoadBalancingResult => getIpLoadBalancingResult.ServiceName),
Zone = "all",
});
var testfrontend = new Ovh.IpLoadBalancing.HttpFrontend("testfrontend", new()
{
DefaultFarmId = farm80.Id,
DisplayName = "ingress-8080-gra",
HttpHeaders = new[]
{
"X-Ip-Header %%ci",
"X-Port-Header %%cp",
},
Port = "80,443",
ServiceName = lb.Apply(getIpLoadBalancingResult => getIpLoadBalancingResult.ServiceName),
Zone = "all",
});
});
package main
import (
"fmt"
"github.com/lbrlabs/pulumi-ovh/sdk/go/ovh/IpLoadBalancing"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
lb, err := IpLoadBalancing.GetIpLoadBalancing(ctx, &iploadbalancing.GetIpLoadBalancingArgs{
ServiceName: pulumi.StringRef("ip-1.2.3.4"),
State: pulumi.StringRef("ok"),
}, nil)
if err != nil {
return err
}
farm80, err := IpLoadBalancing.NewHttpFarm(ctx, "farm80", &IpLoadBalancing.HttpFarmArgs{
DisplayName: pulumi.String("ingress-8080-gra"),
Port: pulumi.Int(80),
ServiceName: *pulumi.String(lb.ServiceName),
Zone: pulumi.String("all"),
})
if err != nil {
return err
}
_, err = IpLoadBalancing.NewHttpFrontend(ctx, "testfrontend", &IpLoadBalancing.HttpFrontendArgs{
DefaultFarmId: farm80.ID(),
DisplayName: pulumi.String("ingress-8080-gra"),
HttpHeaders: pulumi.StringArray{
pulumi.String(fmt.Sprintf("X-Ip-Header %v%vci", "%", "%")),
pulumi.String(fmt.Sprintf("X-Port-Header %v%vcp", "%", "%")),
},
Port: pulumi.String("80,443"),
ServiceName: *pulumi.String(lb.ServiceName),
Zone: pulumi.String("all"),
})
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.ovh.IpLoadBalancing.IpLoadBalancingFunctions;
import com.pulumi.ovh.IpLoadBalancing.inputs.GetIpLoadBalancingArgs;
import com.pulumi.ovh.IpLoadBalancing.HttpFarm;
import com.pulumi.ovh.IpLoadBalancing.HttpFarmArgs;
import com.pulumi.ovh.IpLoadBalancing.HttpFrontend;
import com.pulumi.ovh.IpLoadBalancing.HttpFrontendArgs;
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 lb = IpLoadBalancingFunctions.getIpLoadBalancing(GetIpLoadBalancingArgs.builder()
.serviceName("ip-1.2.3.4")
.state("ok")
.build());
var farm80 = new HttpFarm("farm80", HttpFarmArgs.builder()
.displayName("ingress-8080-gra")
.port(80)
.serviceName(lb.applyValue(getIpLoadBalancingResult -> getIpLoadBalancingResult.serviceName()))
.zone("all")
.build());
var testfrontend = new HttpFrontend("testfrontend", HttpFrontendArgs.builder()
.defaultFarmId(farm80.id())
.displayName("ingress-8080-gra")
.httpHeaders(
"X-Ip-Header %%ci",
"X-Port-Header %%cp")
.port("80,443")
.serviceName(lb.applyValue(getIpLoadBalancingResult -> getIpLoadBalancingResult.serviceName()))
.zone("all")
.build());
}
}
import pulumi
import lbrlabs_pulumi_ovh as ovh
import pulumi_ovh as ovh
lb = ovh.IpLoadBalancing.get_ip_load_balancing(service_name="ip-1.2.3.4",
state="ok")
farm80 = ovh.ip_load_balancing.HttpFarm("farm80",
display_name="ingress-8080-gra",
port=80,
service_name=lb.service_name,
zone="all")
testfrontend = ovh.ip_load_balancing.HttpFrontend("testfrontend",
default_farm_id=farm80.id,
display_name="ingress-8080-gra",
http_headers=[
"X-Ip-Header %%ci",
"X-Port-Header %%cp",
],
port="80,443",
service_name=lb.service_name,
zone="all")
import * as pulumi from "@pulumi/pulumi";
import * as ovh from "@lbrlabs/pulumi-ovh";
import * as ovh from "@pulumi/ovh";
const lb = ovh.IpLoadBalancing.getIpLoadBalancing({
serviceName: "ip-1.2.3.4",
state: "ok",
});
const farm80 = new ovh.iploadbalancing.HttpFarm("farm80", {
displayName: "ingress-8080-gra",
port: 80,
serviceName: lb.then(lb => lb.serviceName),
zone: "all",
});
const testfrontend = new ovh.iploadbalancing.HttpFrontend("testfrontend", {
defaultFarmId: farm80.id,
displayName: "ingress-8080-gra",
httpHeaders: [
`X-Ip-Header %%ci`,
`X-Port-Header %%cp`,
],
port: "80,443",
serviceName: lb.then(lb => lb.serviceName),
zone: "all",
});
resources:
farm80:
type: ovh:IpLoadBalancing:HttpFarm
properties:
displayName: ingress-8080-gra
port: 80
serviceName: ${lb.serviceName}
zone: all
testfrontend:
type: ovh:IpLoadBalancing:HttpFrontend
properties:
defaultFarmId: ${farm80.id}
displayName: ingress-8080-gra
httpHeaders:
- X-Ip-Header %%ci
- X-Port-Header %%cp
port: 80,443
serviceName: ${lb.serviceName}
zone: all
variables:
lb:
fn::invoke:
Function: ovh:IpLoadBalancing:getIpLoadBalancing
Arguments:
serviceName: ip-1.2.3.4
state: ok
Create HttpFrontend Resource
new HttpFrontend(name: string, args: HttpFrontendArgs, opts?: CustomResourceOptions);
@overload
def HttpFrontend(resource_name: str,
opts: Optional[ResourceOptions] = None,
allowed_sources: Optional[Sequence[str]] = None,
dedicated_ipfos: Optional[Sequence[str]] = None,
default_farm_id: Optional[int] = None,
default_ssl_id: Optional[int] = None,
disabled: Optional[bool] = None,
display_name: Optional[str] = None,
hsts: Optional[bool] = None,
http_headers: Optional[Sequence[str]] = None,
port: Optional[str] = None,
redirect_location: Optional[str] = None,
service_name: Optional[str] = None,
ssl: Optional[bool] = None,
zone: Optional[str] = None)
@overload
def HttpFrontend(resource_name: str,
args: HttpFrontendArgs,
opts: Optional[ResourceOptions] = None)
func NewHttpFrontend(ctx *Context, name string, args HttpFrontendArgs, opts ...ResourceOption) (*HttpFrontend, error)
public HttpFrontend(string name, HttpFrontendArgs args, CustomResourceOptions? opts = null)
public HttpFrontend(String name, HttpFrontendArgs args)
public HttpFrontend(String name, HttpFrontendArgs args, CustomResourceOptions options)
type: ovh:IpLoadBalancing:HttpFrontend
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HttpFrontendArgs
- 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 HttpFrontendArgs
- 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 HttpFrontendArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HttpFrontendArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args HttpFrontendArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
HttpFrontend 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 HttpFrontend resource accepts the following input properties:
- Port string
Port(s) attached to your frontend. Supports single port (numerical value), range (2 dash-delimited increasing ports) and comma-separated list of 'single port' and/or 'range'. Each port must be in the [1;49151] range
- Service
Name string The internal name of your IP load balancing
- Zone string
Zone where the frontend will be defined (ie.
gra
,bhs
also supportsall
)- Allowed
Sources List<string> Restrict IP Load Balancing access to these ip block. No restriction if null. List of IP blocks.
- Dedicated
Ipfos List<string> Only attach frontend on these ip. No restriction if null. List of Ip blocks.
- Default
Farm intId Default TCP Farm of your frontend
- Default
Ssl intId Default ssl served to your customer
- Disabled bool
Disable your frontend. Default: 'false'
- Display
Name string Human readable name for your frontend, this field is for you
- Hsts bool
HTTP Strict Transport Security. Default: 'false'
- Http
Headers List<string> HTTP headers to add to the frontend. List of string.
- Redirect
Location string Redirection HTTP'
- Ssl bool
SSL deciphering. Default: 'false'
- Port string
Port(s) attached to your frontend. Supports single port (numerical value), range (2 dash-delimited increasing ports) and comma-separated list of 'single port' and/or 'range'. Each port must be in the [1;49151] range
- Service
Name string The internal name of your IP load balancing
- Zone string
Zone where the frontend will be defined (ie.
gra
,bhs
also supportsall
)- Allowed
Sources []string Restrict IP Load Balancing access to these ip block. No restriction if null. List of IP blocks.
- Dedicated
Ipfos []string Only attach frontend on these ip. No restriction if null. List of Ip blocks.
- Default
Farm intId Default TCP Farm of your frontend
- Default
Ssl intId Default ssl served to your customer
- Disabled bool
Disable your frontend. Default: 'false'
- Display
Name string Human readable name for your frontend, this field is for you
- Hsts bool
HTTP Strict Transport Security. Default: 'false'
- Http
Headers []string HTTP headers to add to the frontend. List of string.
- Redirect
Location string Redirection HTTP'
- Ssl bool
SSL deciphering. Default: 'false'
- port String
Port(s) attached to your frontend. Supports single port (numerical value), range (2 dash-delimited increasing ports) and comma-separated list of 'single port' and/or 'range'. Each port must be in the [1;49151] range
- service
Name String The internal name of your IP load balancing
- zone String
Zone where the frontend will be defined (ie.
gra
,bhs
also supportsall
)- allowed
Sources List<String> Restrict IP Load Balancing access to these ip block. No restriction if null. List of IP blocks.
- dedicated
Ipfos List<String> Only attach frontend on these ip. No restriction if null. List of Ip blocks.
- default
Farm IntegerId Default TCP Farm of your frontend
- default
Ssl IntegerId Default ssl served to your customer
- disabled Boolean
Disable your frontend. Default: 'false'
- display
Name String Human readable name for your frontend, this field is for you
- hsts Boolean
HTTP Strict Transport Security. Default: 'false'
- http
Headers List<String> HTTP headers to add to the frontend. List of string.
- redirect
Location String Redirection HTTP'
- ssl Boolean
SSL deciphering. Default: 'false'
- port string
Port(s) attached to your frontend. Supports single port (numerical value), range (2 dash-delimited increasing ports) and comma-separated list of 'single port' and/or 'range'. Each port must be in the [1;49151] range
- service
Name string The internal name of your IP load balancing
- zone string
Zone where the frontend will be defined (ie.
gra
,bhs
also supportsall
)- allowed
Sources string[] Restrict IP Load Balancing access to these ip block. No restriction if null. List of IP blocks.
- dedicated
Ipfos string[] Only attach frontend on these ip. No restriction if null. List of Ip blocks.
- default
Farm numberId Default TCP Farm of your frontend
- default
Ssl numberId Default ssl served to your customer
- disabled boolean
Disable your frontend. Default: 'false'
- display
Name string Human readable name for your frontend, this field is for you
- hsts boolean
HTTP Strict Transport Security. Default: 'false'
- http
Headers string[] HTTP headers to add to the frontend. List of string.
- redirect
Location string Redirection HTTP'
- ssl boolean
SSL deciphering. Default: 'false'
- port str
Port(s) attached to your frontend. Supports single port (numerical value), range (2 dash-delimited increasing ports) and comma-separated list of 'single port' and/or 'range'. Each port must be in the [1;49151] range
- service_
name str The internal name of your IP load balancing
- zone str
Zone where the frontend will be defined (ie.
gra
,bhs
also supportsall
)- allowed_
sources Sequence[str] Restrict IP Load Balancing access to these ip block. No restriction if null. List of IP blocks.
- dedicated_
ipfos Sequence[str] Only attach frontend on these ip. No restriction if null. List of Ip blocks.
- default_
farm_ intid Default TCP Farm of your frontend
- default_
ssl_ intid Default ssl served to your customer
- disabled bool
Disable your frontend. Default: 'false'
- display_
name str Human readable name for your frontend, this field is for you
- hsts bool
HTTP Strict Transport Security. Default: 'false'
- http_
headers Sequence[str] HTTP headers to add to the frontend. List of string.
- redirect_
location str Redirection HTTP'
- ssl bool
SSL deciphering. Default: 'false'
- port String
Port(s) attached to your frontend. Supports single port (numerical value), range (2 dash-delimited increasing ports) and comma-separated list of 'single port' and/or 'range'. Each port must be in the [1;49151] range
- service
Name String The internal name of your IP load balancing
- zone String
Zone where the frontend will be defined (ie.
gra
,bhs
also supportsall
)- allowed
Sources List<String> Restrict IP Load Balancing access to these ip block. No restriction if null. List of IP blocks.
- dedicated
Ipfos List<String> Only attach frontend on these ip. No restriction if null. List of Ip blocks.
- default
Farm NumberId Default TCP Farm of your frontend
- default
Ssl NumberId Default ssl served to your customer
- disabled Boolean
Disable your frontend. Default: 'false'
- display
Name String Human readable name for your frontend, this field is for you
- hsts Boolean
HTTP Strict Transport Security. Default: 'false'
- http
Headers List<String> HTTP headers to add to the frontend. List of string.
- redirect
Location String Redirection HTTP'
- ssl Boolean
SSL deciphering. Default: 'false'
Outputs
All input properties are implicitly available as output properties. Additionally, the HttpFrontend resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Id string
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
- id string
The provider-assigned unique ID for this managed resource.
- id str
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing HttpFrontend Resource
Get an existing HttpFrontend 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?: HttpFrontendState, opts?: CustomResourceOptions): HttpFrontend
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allowed_sources: Optional[Sequence[str]] = None,
dedicated_ipfos: Optional[Sequence[str]] = None,
default_farm_id: Optional[int] = None,
default_ssl_id: Optional[int] = None,
disabled: Optional[bool] = None,
display_name: Optional[str] = None,
hsts: Optional[bool] = None,
http_headers: Optional[Sequence[str]] = None,
port: Optional[str] = None,
redirect_location: Optional[str] = None,
service_name: Optional[str] = None,
ssl: Optional[bool] = None,
zone: Optional[str] = None) -> HttpFrontend
func GetHttpFrontend(ctx *Context, name string, id IDInput, state *HttpFrontendState, opts ...ResourceOption) (*HttpFrontend, error)
public static HttpFrontend Get(string name, Input<string> id, HttpFrontendState? state, CustomResourceOptions? opts = null)
public static HttpFrontend get(String name, Output<String> id, HttpFrontendState 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.
- Allowed
Sources List<string> Restrict IP Load Balancing access to these ip block. No restriction if null. List of IP blocks.
- Dedicated
Ipfos List<string> Only attach frontend on these ip. No restriction if null. List of Ip blocks.
- Default
Farm intId Default TCP Farm of your frontend
- Default
Ssl intId Default ssl served to your customer
- Disabled bool
Disable your frontend. Default: 'false'
- Display
Name string Human readable name for your frontend, this field is for you
- Hsts bool
HTTP Strict Transport Security. Default: 'false'
- Http
Headers List<string> HTTP headers to add to the frontend. List of string.
- Port string
Port(s) attached to your frontend. Supports single port (numerical value), range (2 dash-delimited increasing ports) and comma-separated list of 'single port' and/or 'range'. Each port must be in the [1;49151] range
- Redirect
Location string Redirection HTTP'
- Service
Name string The internal name of your IP load balancing
- Ssl bool
SSL deciphering. Default: 'false'
- Zone string
Zone where the frontend will be defined (ie.
gra
,bhs
also supportsall
)
- Allowed
Sources []string Restrict IP Load Balancing access to these ip block. No restriction if null. List of IP blocks.
- Dedicated
Ipfos []string Only attach frontend on these ip. No restriction if null. List of Ip blocks.
- Default
Farm intId Default TCP Farm of your frontend
- Default
Ssl intId Default ssl served to your customer
- Disabled bool
Disable your frontend. Default: 'false'
- Display
Name string Human readable name for your frontend, this field is for you
- Hsts bool
HTTP Strict Transport Security. Default: 'false'
- Http
Headers []string HTTP headers to add to the frontend. List of string.
- Port string
Port(s) attached to your frontend. Supports single port (numerical value), range (2 dash-delimited increasing ports) and comma-separated list of 'single port' and/or 'range'. Each port must be in the [1;49151] range
- Redirect
Location string Redirection HTTP'
- Service
Name string The internal name of your IP load balancing
- Ssl bool
SSL deciphering. Default: 'false'
- Zone string
Zone where the frontend will be defined (ie.
gra
,bhs
also supportsall
)
- allowed
Sources List<String> Restrict IP Load Balancing access to these ip block. No restriction if null. List of IP blocks.
- dedicated
Ipfos List<String> Only attach frontend on these ip. No restriction if null. List of Ip blocks.
- default
Farm IntegerId Default TCP Farm of your frontend
- default
Ssl IntegerId Default ssl served to your customer
- disabled Boolean
Disable your frontend. Default: 'false'
- display
Name String Human readable name for your frontend, this field is for you
- hsts Boolean
HTTP Strict Transport Security. Default: 'false'
- http
Headers List<String> HTTP headers to add to the frontend. List of string.
- port String
Port(s) attached to your frontend. Supports single port (numerical value), range (2 dash-delimited increasing ports) and comma-separated list of 'single port' and/or 'range'. Each port must be in the [1;49151] range
- redirect
Location String Redirection HTTP'
- service
Name String The internal name of your IP load balancing
- ssl Boolean
SSL deciphering. Default: 'false'
- zone String
Zone where the frontend will be defined (ie.
gra
,bhs
also supportsall
)
- allowed
Sources string[] Restrict IP Load Balancing access to these ip block. No restriction if null. List of IP blocks.
- dedicated
Ipfos string[] Only attach frontend on these ip. No restriction if null. List of Ip blocks.
- default
Farm numberId Default TCP Farm of your frontend
- default
Ssl numberId Default ssl served to your customer
- disabled boolean
Disable your frontend. Default: 'false'
- display
Name string Human readable name for your frontend, this field is for you
- hsts boolean
HTTP Strict Transport Security. Default: 'false'
- http
Headers string[] HTTP headers to add to the frontend. List of string.
- port string
Port(s) attached to your frontend. Supports single port (numerical value), range (2 dash-delimited increasing ports) and comma-separated list of 'single port' and/or 'range'. Each port must be in the [1;49151] range
- redirect
Location string Redirection HTTP'
- service
Name string The internal name of your IP load balancing
- ssl boolean
SSL deciphering. Default: 'false'
- zone string
Zone where the frontend will be defined (ie.
gra
,bhs
also supportsall
)
- allowed_
sources Sequence[str] Restrict IP Load Balancing access to these ip block. No restriction if null. List of IP blocks.
- dedicated_
ipfos Sequence[str] Only attach frontend on these ip. No restriction if null. List of Ip blocks.
- default_
farm_ intid Default TCP Farm of your frontend
- default_
ssl_ intid Default ssl served to your customer
- disabled bool
Disable your frontend. Default: 'false'
- display_
name str Human readable name for your frontend, this field is for you
- hsts bool
HTTP Strict Transport Security. Default: 'false'
- http_
headers Sequence[str] HTTP headers to add to the frontend. List of string.
- port str
Port(s) attached to your frontend. Supports single port (numerical value), range (2 dash-delimited increasing ports) and comma-separated list of 'single port' and/or 'range'. Each port must be in the [1;49151] range
- redirect_
location str Redirection HTTP'
- service_
name str The internal name of your IP load balancing
- ssl bool
SSL deciphering. Default: 'false'
- zone str
Zone where the frontend will be defined (ie.
gra
,bhs
also supportsall
)
- allowed
Sources List<String> Restrict IP Load Balancing access to these ip block. No restriction if null. List of IP blocks.
- dedicated
Ipfos List<String> Only attach frontend on these ip. No restriction if null. List of Ip blocks.
- default
Farm NumberId Default TCP Farm of your frontend
- default
Ssl NumberId Default ssl served to your customer
- disabled Boolean
Disable your frontend. Default: 'false'
- display
Name String Human readable name for your frontend, this field is for you
- hsts Boolean
HTTP Strict Transport Security. Default: 'false'
- http
Headers List<String> HTTP headers to add to the frontend. List of string.
- port String
Port(s) attached to your frontend. Supports single port (numerical value), range (2 dash-delimited increasing ports) and comma-separated list of 'single port' and/or 'range'. Each port must be in the [1;49151] range
- redirect
Location String Redirection HTTP'
- service
Name String The internal name of your IP load balancing
- ssl Boolean
SSL deciphering. Default: 'false'
- zone String
Zone where the frontend will be defined (ie.
gra
,bhs
also supportsall
)
Package Details
- Repository
- ovh lbrlabs/pulumi-ovh
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
ovh
Terraform Provider.