1. Packages
  2. Scaleway
  3. API Docs
  4. loadbalancers
  5. Backend
Scaleway v1.25.0 published on Saturday, Mar 22, 2025 by pulumiverse

scaleway.loadbalancers.Backend

Explore with Pulumi AI

Creates and manages Scaleway Load Balancer backends.

or more information, see the main documentation or API documentation.

Example Usage

Basic

import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";

const backend01 = new scaleway.loadbalancers.Backend("backend01", {
    lbId: lb01.id,
    name: "backend01",
    forwardProtocol: "http",
    forwardPort: 80,
});
Copy
import pulumi
import pulumiverse_scaleway as scaleway

backend01 = scaleway.loadbalancers.Backend("backend01",
    lb_id=lb01["id"],
    name="backend01",
    forward_protocol="http",
    forward_port=80)
Copy
package main

import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/loadbalancers"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := loadbalancers.NewBackend(ctx, "backend01", &loadbalancers.BackendArgs{
			LbId:            pulumi.Any(lb01.Id),
			Name:            pulumi.String("backend01"),
			ForwardProtocol: pulumi.String("http"),
			ForwardPort:     pulumi.Int(80),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;

return await Deployment.RunAsync(() => 
{
    var backend01 = new Scaleway.Loadbalancers.Backend("backend01", new()
    {
        LbId = lb01.Id,
        Name = "backend01",
        ForwardProtocol = "http",
        ForwardPort = 80,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.loadbalancers.Backend;
import com.pulumi.scaleway.loadbalancers.BackendArgs;
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 backend01 = new Backend("backend01", BackendArgs.builder()
            .lbId(lb01.id())
            .name("backend01")
            .forwardProtocol("http")
            .forwardPort("80")
            .build());

    }
}
Copy
resources:
  backend01:
    type: scaleway:loadbalancers:Backend
    properties:
      lbId: ${lb01.id}
      name: backend01
      forwardProtocol: http
      forwardPort: '80'
Copy

With HTTP Health Check

import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";

const backend01 = new scaleway.loadbalancers.Backend("backend01", {
    lbId: lb01.id,
    name: "backend01",
    forwardProtocol: "http",
    forwardPort: 80,
    healthCheckHttp: {
        uri: "www.test.com/health",
    },
});
Copy
import pulumi
import pulumiverse_scaleway as scaleway

backend01 = scaleway.loadbalancers.Backend("backend01",
    lb_id=lb01["id"],
    name="backend01",
    forward_protocol="http",
    forward_port=80,
    health_check_http={
        "uri": "www.test.com/health",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/loadbalancers"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := loadbalancers.NewBackend(ctx, "backend01", &loadbalancers.BackendArgs{
			LbId:            pulumi.Any(lb01.Id),
			Name:            pulumi.String("backend01"),
			ForwardProtocol: pulumi.String("http"),
			ForwardPort:     pulumi.Int(80),
			HealthCheckHttp: &loadbalancers.BackendHealthCheckHttpArgs{
				Uri: pulumi.String("www.test.com/health"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;

return await Deployment.RunAsync(() => 
{
    var backend01 = new Scaleway.Loadbalancers.Backend("backend01", new()
    {
        LbId = lb01.Id,
        Name = "backend01",
        ForwardProtocol = "http",
        ForwardPort = 80,
        HealthCheckHttp = new Scaleway.Loadbalancers.Inputs.BackendHealthCheckHttpArgs
        {
            Uri = "www.test.com/health",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.loadbalancers.Backend;
import com.pulumi.scaleway.loadbalancers.BackendArgs;
import com.pulumi.scaleway.loadbalancers.inputs.BackendHealthCheckHttpArgs;
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 backend01 = new Backend("backend01", BackendArgs.builder()
            .lbId(lb01.id())
            .name("backend01")
            .forwardProtocol("http")
            .forwardPort("80")
            .healthCheckHttp(BackendHealthCheckHttpArgs.builder()
                .uri("www.test.com/health")
                .build())
            .build());

    }
}
Copy
resources:
  backend01:
    type: scaleway:loadbalancers:Backend
    properties:
      lbId: ${lb01.id}
      name: backend01
      forwardProtocol: http
      forwardPort: '80'
      healthCheckHttp:
        uri: www.test.com/health
Copy

Create Backend Resource

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

Constructor syntax

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

@overload
def Backend(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            forward_protocol: Optional[str] = None,
            forward_port: Optional[int] = None,
            lb_id: Optional[str] = None,
            health_check_max_retries: Optional[int] = None,
            max_retries: Optional[int] = None,
            health_check_http: Optional[BackendHealthCheckHttpArgs] = None,
            health_check_https: Optional[BackendHealthCheckHttpsArgs] = None,
            failover_host: Optional[str] = None,
            health_check_port: Optional[int] = None,
            health_check_send_proxy: Optional[bool] = None,
            health_check_tcp: Optional[BackendHealthCheckTcpArgs] = None,
            health_check_timeout: Optional[str] = None,
            health_check_transient_delay: Optional[str] = None,
            ignore_ssl_server_verify: Optional[bool] = None,
            forward_port_algorithm: Optional[str] = None,
            max_connections: Optional[int] = None,
            health_check_delay: Optional[str] = None,
            name: Optional[str] = None,
            on_marked_down_action: Optional[str] = None,
            proxy_protocol: Optional[str] = None,
            redispatch_attempt_count: Optional[int] = None,
            send_proxy_v2: Optional[bool] = None,
            server_ips: Optional[Sequence[str]] = None,
            ssl_bridging: Optional[bool] = None,
            sticky_sessions: Optional[str] = None,
            sticky_sessions_cookie_name: Optional[str] = None,
            timeout_connect: Optional[str] = None,
            timeout_queue: Optional[str] = None,
            timeout_server: Optional[str] = None,
            timeout_tunnel: Optional[str] = None)
func NewBackend(ctx *Context, name string, args BackendArgs, opts ...ResourceOption) (*Backend, error)
public Backend(string name, BackendArgs args, CustomResourceOptions? opts = null)
public Backend(String name, BackendArgs args)
public Backend(String name, BackendArgs args, CustomResourceOptions options)
type: scaleway:loadbalancers:Backend
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. BackendArgs
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. BackendArgs
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. BackendArgs
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. BackendArgs
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. BackendArgs
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 backendResource = new Scaleway.Loadbalancers.Backend("backendResource", new()
{
    ForwardProtocol = "string",
    ForwardPort = 0,
    LbId = "string",
    HealthCheckMaxRetries = 0,
    MaxRetries = 0,
    HealthCheckHttp = new Scaleway.Loadbalancers.Inputs.BackendHealthCheckHttpArgs
    {
        Uri = "string",
        Code = 0,
        HostHeader = "string",
        Method = "string",
    },
    HealthCheckHttps = new Scaleway.Loadbalancers.Inputs.BackendHealthCheckHttpsArgs
    {
        Uri = "string",
        Code = 0,
        HostHeader = "string",
        Method = "string",
        Sni = "string",
    },
    FailoverHost = "string",
    HealthCheckPort = 0,
    HealthCheckSendProxy = false,
    HealthCheckTcp = null,
    HealthCheckTimeout = "string",
    HealthCheckTransientDelay = "string",
    IgnoreSslServerVerify = false,
    ForwardPortAlgorithm = "string",
    MaxConnections = 0,
    HealthCheckDelay = "string",
    Name = "string",
    OnMarkedDownAction = "string",
    ProxyProtocol = "string",
    RedispatchAttemptCount = 0,
    ServerIps = new[]
    {
        "string",
    },
    SslBridging = false,
    StickySessions = "string",
    StickySessionsCookieName = "string",
    TimeoutConnect = "string",
    TimeoutQueue = "string",
    TimeoutServer = "string",
    TimeoutTunnel = "string",
});
Copy
example, err := loadbalancers.NewBackend(ctx, "backendResource", &loadbalancers.BackendArgs{
	ForwardProtocol:       pulumi.String("string"),
	ForwardPort:           pulumi.Int(0),
	LbId:                  pulumi.String("string"),
	HealthCheckMaxRetries: pulumi.Int(0),
	MaxRetries:            pulumi.Int(0),
	HealthCheckHttp: &loadbalancers.BackendHealthCheckHttpArgs{
		Uri:        pulumi.String("string"),
		Code:       pulumi.Int(0),
		HostHeader: pulumi.String("string"),
		Method:     pulumi.String("string"),
	},
	HealthCheckHttps: &loadbalancers.BackendHealthCheckHttpsArgs{
		Uri:        pulumi.String("string"),
		Code:       pulumi.Int(0),
		HostHeader: pulumi.String("string"),
		Method:     pulumi.String("string"),
		Sni:        pulumi.String("string"),
	},
	FailoverHost:              pulumi.String("string"),
	HealthCheckPort:           pulumi.Int(0),
	HealthCheckSendProxy:      pulumi.Bool(false),
	HealthCheckTcp:            &loadbalancers.BackendHealthCheckTcpArgs{},
	HealthCheckTimeout:        pulumi.String("string"),
	HealthCheckTransientDelay: pulumi.String("string"),
	IgnoreSslServerVerify:     pulumi.Bool(false),
	ForwardPortAlgorithm:      pulumi.String("string"),
	MaxConnections:            pulumi.Int(0),
	HealthCheckDelay:          pulumi.String("string"),
	Name:                      pulumi.String("string"),
	OnMarkedDownAction:        pulumi.String("string"),
	ProxyProtocol:             pulumi.String("string"),
	RedispatchAttemptCount:    pulumi.Int(0),
	ServerIps: pulumi.StringArray{
		pulumi.String("string"),
	},
	SslBridging:              pulumi.Bool(false),
	StickySessions:           pulumi.String("string"),
	StickySessionsCookieName: pulumi.String("string"),
	TimeoutConnect:           pulumi.String("string"),
	TimeoutQueue:             pulumi.String("string"),
	TimeoutServer:            pulumi.String("string"),
	TimeoutTunnel:            pulumi.String("string"),
})
Copy
var backendResource = new Backend("backendResource", BackendArgs.builder()
    .forwardProtocol("string")
    .forwardPort(0)
    .lbId("string")
    .healthCheckMaxRetries(0)
    .maxRetries(0)
    .healthCheckHttp(BackendHealthCheckHttpArgs.builder()
        .uri("string")
        .code(0)
        .hostHeader("string")
        .method("string")
        .build())
    .healthCheckHttps(BackendHealthCheckHttpsArgs.builder()
        .uri("string")
        .code(0)
        .hostHeader("string")
        .method("string")
        .sni("string")
        .build())
    .failoverHost("string")
    .healthCheckPort(0)
    .healthCheckSendProxy(false)
    .healthCheckTcp()
    .healthCheckTimeout("string")
    .healthCheckTransientDelay("string")
    .ignoreSslServerVerify(false)
    .forwardPortAlgorithm("string")
    .maxConnections(0)
    .healthCheckDelay("string")
    .name("string")
    .onMarkedDownAction("string")
    .proxyProtocol("string")
    .redispatchAttemptCount(0)
    .serverIps("string")
    .sslBridging(false)
    .stickySessions("string")
    .stickySessionsCookieName("string")
    .timeoutConnect("string")
    .timeoutQueue("string")
    .timeoutServer("string")
    .timeoutTunnel("string")
    .build());
Copy
backend_resource = scaleway.loadbalancers.Backend("backendResource",
    forward_protocol="string",
    forward_port=0,
    lb_id="string",
    health_check_max_retries=0,
    max_retries=0,
    health_check_http={
        "uri": "string",
        "code": 0,
        "host_header": "string",
        "method": "string",
    },
    health_check_https={
        "uri": "string",
        "code": 0,
        "host_header": "string",
        "method": "string",
        "sni": "string",
    },
    failover_host="string",
    health_check_port=0,
    health_check_send_proxy=False,
    health_check_tcp={},
    health_check_timeout="string",
    health_check_transient_delay="string",
    ignore_ssl_server_verify=False,
    forward_port_algorithm="string",
    max_connections=0,
    health_check_delay="string",
    name="string",
    on_marked_down_action="string",
    proxy_protocol="string",
    redispatch_attempt_count=0,
    server_ips=["string"],
    ssl_bridging=False,
    sticky_sessions="string",
    sticky_sessions_cookie_name="string",
    timeout_connect="string",
    timeout_queue="string",
    timeout_server="string",
    timeout_tunnel="string")
Copy
const backendResource = new scaleway.loadbalancers.Backend("backendResource", {
    forwardProtocol: "string",
    forwardPort: 0,
    lbId: "string",
    healthCheckMaxRetries: 0,
    maxRetries: 0,
    healthCheckHttp: {
        uri: "string",
        code: 0,
        hostHeader: "string",
        method: "string",
    },
    healthCheckHttps: {
        uri: "string",
        code: 0,
        hostHeader: "string",
        method: "string",
        sni: "string",
    },
    failoverHost: "string",
    healthCheckPort: 0,
    healthCheckSendProxy: false,
    healthCheckTcp: {},
    healthCheckTimeout: "string",
    healthCheckTransientDelay: "string",
    ignoreSslServerVerify: false,
    forwardPortAlgorithm: "string",
    maxConnections: 0,
    healthCheckDelay: "string",
    name: "string",
    onMarkedDownAction: "string",
    proxyProtocol: "string",
    redispatchAttemptCount: 0,
    serverIps: ["string"],
    sslBridging: false,
    stickySessions: "string",
    stickySessionsCookieName: "string",
    timeoutConnect: "string",
    timeoutQueue: "string",
    timeoutServer: "string",
    timeoutTunnel: "string",
});
Copy
type: scaleway:loadbalancers:Backend
properties:
    failoverHost: string
    forwardPort: 0
    forwardPortAlgorithm: string
    forwardProtocol: string
    healthCheckDelay: string
    healthCheckHttp:
        code: 0
        hostHeader: string
        method: string
        uri: string
    healthCheckHttps:
        code: 0
        hostHeader: string
        method: string
        sni: string
        uri: string
    healthCheckMaxRetries: 0
    healthCheckPort: 0
    healthCheckSendProxy: false
    healthCheckTcp: {}
    healthCheckTimeout: string
    healthCheckTransientDelay: string
    ignoreSslServerVerify: false
    lbId: string
    maxConnections: 0
    maxRetries: 0
    name: string
    onMarkedDownAction: string
    proxyProtocol: string
    redispatchAttemptCount: 0
    serverIps:
        - string
    sslBridging: false
    stickySessions: string
    stickySessionsCookieName: string
    timeoutConnect: string
    timeoutQueue: string
    timeoutServer: string
    timeoutTunnel: string
Copy

Backend 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 Backend resource accepts the following input properties:

ForwardPort This property is required. int
User sessions will be forwarded to this port of backend servers
ForwardProtocol This property is required. string
Backend protocol
LbId
This property is required.
Changes to this property will trigger replacement.
string
The load-balancer ID
FailoverHost string
Scaleway S3 bucket website to be served in case all backend servers are down NOTE : Only the host part of the Scaleway S3 bucket website is expected. E.g. 'failover-website.s3-website.fr-par.scw.cloud' if your bucket website URL is 'https://failover-website.s3-website.fr-par.scw.cloud/'.
ForwardPortAlgorithm string
Load balancing algorithm
HealthCheckDelay string
Interval between two HC requests
HealthCheckHttp Pulumiverse.Scaleway.Loadbalancers.Inputs.BackendHealthCheckHttp
HealthCheckHttps Pulumiverse.Scaleway.Loadbalancers.Inputs.BackendHealthCheckHttps
HealthCheckMaxRetries int
Number of allowed failed HC requests before the backend server is marked down
HealthCheckPort int
Port the HC requests will be send to. Default to forward_port
HealthCheckSendProxy bool
Defines whether proxy protocol should be activated for the health check
HealthCheckTcp Pulumiverse.Scaleway.Loadbalancers.Inputs.BackendHealthCheckTcp
HealthCheckTimeout string
Timeout before we consider a HC request failed
HealthCheckTransientDelay string
Time to wait between two consecutive health checks when a backend server is in a transient state (going UP or DOWN)
IgnoreSslServerVerify bool
Specifies whether the Load Balancer should check the backend server’s certificate before initiating a connection
MaxConnections int
Maximum number of connections allowed per backend server
MaxRetries int
Number of retries when a backend server connection failed
Name string
The name of the backend
OnMarkedDownAction string
Modify what occurs when a backend server is marked down
ProxyProtocol string
Type of PROXY protocol to enable
RedispatchAttemptCount int
Whether to use another backend server on each attempt
SendProxyV2 bool
Enables PROXY protocol version 2

Deprecated: Please use proxy_protocol instead

ServerIps List<string>
Backend server IP addresses list (IPv4 or IPv6)
SslBridging bool
Enables SSL between load balancer and backend servers
StickySessions string
The type of sticky sessions
StickySessionsCookieName string
Cookie name for sticky sessions
TimeoutConnect string
Maximum initial server connection establishment time
TimeoutQueue string
Maximum time (in seconds) for a request to be left pending in queue when max_connections is reached
TimeoutServer string
Maximum server connection inactivity time
TimeoutTunnel string
Maximum tunnel inactivity time
ForwardPort This property is required. int
User sessions will be forwarded to this port of backend servers
ForwardProtocol This property is required. string
Backend protocol
LbId
This property is required.
Changes to this property will trigger replacement.
string
The load-balancer ID
FailoverHost string
Scaleway S3 bucket website to be served in case all backend servers are down NOTE : Only the host part of the Scaleway S3 bucket website is expected. E.g. 'failover-website.s3-website.fr-par.scw.cloud' if your bucket website URL is 'https://failover-website.s3-website.fr-par.scw.cloud/'.
ForwardPortAlgorithm string
Load balancing algorithm
HealthCheckDelay string
Interval between two HC requests
HealthCheckHttp BackendHealthCheckHttpArgs
HealthCheckHttps BackendHealthCheckHttpsArgs
HealthCheckMaxRetries int
Number of allowed failed HC requests before the backend server is marked down
HealthCheckPort int
Port the HC requests will be send to. Default to forward_port
HealthCheckSendProxy bool
Defines whether proxy protocol should be activated for the health check
HealthCheckTcp BackendHealthCheckTcpArgs
HealthCheckTimeout string
Timeout before we consider a HC request failed
HealthCheckTransientDelay string
Time to wait between two consecutive health checks when a backend server is in a transient state (going UP or DOWN)
IgnoreSslServerVerify bool
Specifies whether the Load Balancer should check the backend server’s certificate before initiating a connection
MaxConnections int
Maximum number of connections allowed per backend server
MaxRetries int
Number of retries when a backend server connection failed
Name string
The name of the backend
OnMarkedDownAction string
Modify what occurs when a backend server is marked down
ProxyProtocol string
Type of PROXY protocol to enable
RedispatchAttemptCount int
Whether to use another backend server on each attempt
SendProxyV2 bool
Enables PROXY protocol version 2

Deprecated: Please use proxy_protocol instead

ServerIps []string
Backend server IP addresses list (IPv4 or IPv6)
SslBridging bool
Enables SSL between load balancer and backend servers
StickySessions string
The type of sticky sessions
StickySessionsCookieName string
Cookie name for sticky sessions
TimeoutConnect string
Maximum initial server connection establishment time
TimeoutQueue string
Maximum time (in seconds) for a request to be left pending in queue when max_connections is reached
TimeoutServer string
Maximum server connection inactivity time
TimeoutTunnel string
Maximum tunnel inactivity time
forwardPort This property is required. Integer
User sessions will be forwarded to this port of backend servers
forwardProtocol This property is required. String
Backend protocol
lbId
This property is required.
Changes to this property will trigger replacement.
String
The load-balancer ID
failoverHost String
Scaleway S3 bucket website to be served in case all backend servers are down NOTE : Only the host part of the Scaleway S3 bucket website is expected. E.g. 'failover-website.s3-website.fr-par.scw.cloud' if your bucket website URL is 'https://failover-website.s3-website.fr-par.scw.cloud/'.
forwardPortAlgorithm String
Load balancing algorithm
healthCheckDelay String
Interval between two HC requests
healthCheckHttp BackendHealthCheckHttp
healthCheckHttps BackendHealthCheckHttps
healthCheckMaxRetries Integer
Number of allowed failed HC requests before the backend server is marked down
healthCheckPort Integer
Port the HC requests will be send to. Default to forward_port
healthCheckSendProxy Boolean
Defines whether proxy protocol should be activated for the health check
healthCheckTcp BackendHealthCheckTcp
healthCheckTimeout String
Timeout before we consider a HC request failed
healthCheckTransientDelay String
Time to wait between two consecutive health checks when a backend server is in a transient state (going UP or DOWN)
ignoreSslServerVerify Boolean
Specifies whether the Load Balancer should check the backend server’s certificate before initiating a connection
maxConnections Integer
Maximum number of connections allowed per backend server
maxRetries Integer
Number of retries when a backend server connection failed
name String
The name of the backend
onMarkedDownAction String
Modify what occurs when a backend server is marked down
proxyProtocol String
Type of PROXY protocol to enable
redispatchAttemptCount Integer
Whether to use another backend server on each attempt
sendProxyV2 Boolean
Enables PROXY protocol version 2

Deprecated: Please use proxy_protocol instead

serverIps List<String>
Backend server IP addresses list (IPv4 or IPv6)
sslBridging Boolean
Enables SSL between load balancer and backend servers
stickySessions String
The type of sticky sessions
stickySessionsCookieName String
Cookie name for sticky sessions
timeoutConnect String
Maximum initial server connection establishment time
timeoutQueue String
Maximum time (in seconds) for a request to be left pending in queue when max_connections is reached
timeoutServer String
Maximum server connection inactivity time
timeoutTunnel String
Maximum tunnel inactivity time
forwardPort This property is required. number
User sessions will be forwarded to this port of backend servers
forwardProtocol This property is required. string
Backend protocol
lbId
This property is required.
Changes to this property will trigger replacement.
string
The load-balancer ID
failoverHost string
Scaleway S3 bucket website to be served in case all backend servers are down NOTE : Only the host part of the Scaleway S3 bucket website is expected. E.g. 'failover-website.s3-website.fr-par.scw.cloud' if your bucket website URL is 'https://failover-website.s3-website.fr-par.scw.cloud/'.
forwardPortAlgorithm string
Load balancing algorithm
healthCheckDelay string
Interval between two HC requests
healthCheckHttp BackendHealthCheckHttp
healthCheckHttps BackendHealthCheckHttps
healthCheckMaxRetries number
Number of allowed failed HC requests before the backend server is marked down
healthCheckPort number
Port the HC requests will be send to. Default to forward_port
healthCheckSendProxy boolean
Defines whether proxy protocol should be activated for the health check
healthCheckTcp BackendHealthCheckTcp
healthCheckTimeout string
Timeout before we consider a HC request failed
healthCheckTransientDelay string
Time to wait between two consecutive health checks when a backend server is in a transient state (going UP or DOWN)
ignoreSslServerVerify boolean
Specifies whether the Load Balancer should check the backend server’s certificate before initiating a connection
maxConnections number
Maximum number of connections allowed per backend server
maxRetries number
Number of retries when a backend server connection failed
name string
The name of the backend
onMarkedDownAction string
Modify what occurs when a backend server is marked down
proxyProtocol string
Type of PROXY protocol to enable
redispatchAttemptCount number
Whether to use another backend server on each attempt
sendProxyV2 boolean
Enables PROXY protocol version 2

Deprecated: Please use proxy_protocol instead

serverIps string[]
Backend server IP addresses list (IPv4 or IPv6)
sslBridging boolean
Enables SSL between load balancer and backend servers
stickySessions string
The type of sticky sessions
stickySessionsCookieName string
Cookie name for sticky sessions
timeoutConnect string
Maximum initial server connection establishment time
timeoutQueue string
Maximum time (in seconds) for a request to be left pending in queue when max_connections is reached
timeoutServer string
Maximum server connection inactivity time
timeoutTunnel string
Maximum tunnel inactivity time
forward_port This property is required. int
User sessions will be forwarded to this port of backend servers
forward_protocol This property is required. str
Backend protocol
lb_id
This property is required.
Changes to this property will trigger replacement.
str
The load-balancer ID
failover_host str
Scaleway S3 bucket website to be served in case all backend servers are down NOTE : Only the host part of the Scaleway S3 bucket website is expected. E.g. 'failover-website.s3-website.fr-par.scw.cloud' if your bucket website URL is 'https://failover-website.s3-website.fr-par.scw.cloud/'.
forward_port_algorithm str
Load balancing algorithm
health_check_delay str
Interval between two HC requests
health_check_http BackendHealthCheckHttpArgs
health_check_https BackendHealthCheckHttpsArgs
health_check_max_retries int
Number of allowed failed HC requests before the backend server is marked down
health_check_port int
Port the HC requests will be send to. Default to forward_port
health_check_send_proxy bool
Defines whether proxy protocol should be activated for the health check
health_check_tcp BackendHealthCheckTcpArgs
health_check_timeout str
Timeout before we consider a HC request failed
health_check_transient_delay str
Time to wait between two consecutive health checks when a backend server is in a transient state (going UP or DOWN)
ignore_ssl_server_verify bool
Specifies whether the Load Balancer should check the backend server’s certificate before initiating a connection
max_connections int
Maximum number of connections allowed per backend server
max_retries int
Number of retries when a backend server connection failed
name str
The name of the backend
on_marked_down_action str
Modify what occurs when a backend server is marked down
proxy_protocol str
Type of PROXY protocol to enable
redispatch_attempt_count int
Whether to use another backend server on each attempt
send_proxy_v2 bool
Enables PROXY protocol version 2

Deprecated: Please use proxy_protocol instead

server_ips Sequence[str]
Backend server IP addresses list (IPv4 or IPv6)
ssl_bridging bool
Enables SSL between load balancer and backend servers
sticky_sessions str
The type of sticky sessions
sticky_sessions_cookie_name str
Cookie name for sticky sessions
timeout_connect str
Maximum initial server connection establishment time
timeout_queue str
Maximum time (in seconds) for a request to be left pending in queue when max_connections is reached
timeout_server str
Maximum server connection inactivity time
timeout_tunnel str
Maximum tunnel inactivity time
forwardPort This property is required. Number
User sessions will be forwarded to this port of backend servers
forwardProtocol This property is required. String
Backend protocol
lbId
This property is required.
Changes to this property will trigger replacement.
String
The load-balancer ID
failoverHost String
Scaleway S3 bucket website to be served in case all backend servers are down NOTE : Only the host part of the Scaleway S3 bucket website is expected. E.g. 'failover-website.s3-website.fr-par.scw.cloud' if your bucket website URL is 'https://failover-website.s3-website.fr-par.scw.cloud/'.
forwardPortAlgorithm String
Load balancing algorithm
healthCheckDelay String
Interval between two HC requests
healthCheckHttp Property Map
healthCheckHttps Property Map
healthCheckMaxRetries Number
Number of allowed failed HC requests before the backend server is marked down
healthCheckPort Number
Port the HC requests will be send to. Default to forward_port
healthCheckSendProxy Boolean
Defines whether proxy protocol should be activated for the health check
healthCheckTcp Property Map
healthCheckTimeout String
Timeout before we consider a HC request failed
healthCheckTransientDelay String
Time to wait between two consecutive health checks when a backend server is in a transient state (going UP or DOWN)
ignoreSslServerVerify Boolean
Specifies whether the Load Balancer should check the backend server’s certificate before initiating a connection
maxConnections Number
Maximum number of connections allowed per backend server
maxRetries Number
Number of retries when a backend server connection failed
name String
The name of the backend
onMarkedDownAction String
Modify what occurs when a backend server is marked down
proxyProtocol String
Type of PROXY protocol to enable
redispatchAttemptCount Number
Whether to use another backend server on each attempt
sendProxyV2 Boolean
Enables PROXY protocol version 2

Deprecated: Please use proxy_protocol instead

serverIps List<String>
Backend server IP addresses list (IPv4 or IPv6)
sslBridging Boolean
Enables SSL between load balancer and backend servers
stickySessions String
The type of sticky sessions
stickySessionsCookieName String
Cookie name for sticky sessions
timeoutConnect String
Maximum initial server connection establishment time
timeoutQueue String
Maximum time (in seconds) for a request to be left pending in queue when max_connections is reached
timeoutServer String
Maximum server connection inactivity time
timeoutTunnel String
Maximum tunnel inactivity time

Outputs

All input properties are implicitly available as output properties. Additionally, the Backend 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 Backend Resource

Get an existing Backend 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?: BackendState, opts?: CustomResourceOptions): Backend
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        failover_host: Optional[str] = None,
        forward_port: Optional[int] = None,
        forward_port_algorithm: Optional[str] = None,
        forward_protocol: Optional[str] = None,
        health_check_delay: Optional[str] = None,
        health_check_http: Optional[BackendHealthCheckHttpArgs] = None,
        health_check_https: Optional[BackendHealthCheckHttpsArgs] = None,
        health_check_max_retries: Optional[int] = None,
        health_check_port: Optional[int] = None,
        health_check_send_proxy: Optional[bool] = None,
        health_check_tcp: Optional[BackendHealthCheckTcpArgs] = None,
        health_check_timeout: Optional[str] = None,
        health_check_transient_delay: Optional[str] = None,
        ignore_ssl_server_verify: Optional[bool] = None,
        lb_id: Optional[str] = None,
        max_connections: Optional[int] = None,
        max_retries: Optional[int] = None,
        name: Optional[str] = None,
        on_marked_down_action: Optional[str] = None,
        proxy_protocol: Optional[str] = None,
        redispatch_attempt_count: Optional[int] = None,
        send_proxy_v2: Optional[bool] = None,
        server_ips: Optional[Sequence[str]] = None,
        ssl_bridging: Optional[bool] = None,
        sticky_sessions: Optional[str] = None,
        sticky_sessions_cookie_name: Optional[str] = None,
        timeout_connect: Optional[str] = None,
        timeout_queue: Optional[str] = None,
        timeout_server: Optional[str] = None,
        timeout_tunnel: Optional[str] = None) -> Backend
func GetBackend(ctx *Context, name string, id IDInput, state *BackendState, opts ...ResourceOption) (*Backend, error)
public static Backend Get(string name, Input<string> id, BackendState? state, CustomResourceOptions? opts = null)
public static Backend get(String name, Output<String> id, BackendState state, CustomResourceOptions options)
resources:  _:    type: scaleway:loadbalancers:Backend    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:
FailoverHost string
Scaleway S3 bucket website to be served in case all backend servers are down NOTE : Only the host part of the Scaleway S3 bucket website is expected. E.g. 'failover-website.s3-website.fr-par.scw.cloud' if your bucket website URL is 'https://failover-website.s3-website.fr-par.scw.cloud/'.
ForwardPort int
User sessions will be forwarded to this port of backend servers
ForwardPortAlgorithm string
Load balancing algorithm
ForwardProtocol string
Backend protocol
HealthCheckDelay string
Interval between two HC requests
HealthCheckHttp Pulumiverse.Scaleway.Loadbalancers.Inputs.BackendHealthCheckHttp
HealthCheckHttps Pulumiverse.Scaleway.Loadbalancers.Inputs.BackendHealthCheckHttps
HealthCheckMaxRetries int
Number of allowed failed HC requests before the backend server is marked down
HealthCheckPort int
Port the HC requests will be send to. Default to forward_port
HealthCheckSendProxy bool
Defines whether proxy protocol should be activated for the health check
HealthCheckTcp Pulumiverse.Scaleway.Loadbalancers.Inputs.BackendHealthCheckTcp
HealthCheckTimeout string
Timeout before we consider a HC request failed
HealthCheckTransientDelay string
Time to wait between two consecutive health checks when a backend server is in a transient state (going UP or DOWN)
IgnoreSslServerVerify bool
Specifies whether the Load Balancer should check the backend server’s certificate before initiating a connection
LbId Changes to this property will trigger replacement. string
The load-balancer ID
MaxConnections int
Maximum number of connections allowed per backend server
MaxRetries int
Number of retries when a backend server connection failed
Name string
The name of the backend
OnMarkedDownAction string
Modify what occurs when a backend server is marked down
ProxyProtocol string
Type of PROXY protocol to enable
RedispatchAttemptCount int
Whether to use another backend server on each attempt
SendProxyV2 bool
Enables PROXY protocol version 2

Deprecated: Please use proxy_protocol instead

ServerIps List<string>
Backend server IP addresses list (IPv4 or IPv6)
SslBridging bool
Enables SSL between load balancer and backend servers
StickySessions string
The type of sticky sessions
StickySessionsCookieName string
Cookie name for sticky sessions
TimeoutConnect string
Maximum initial server connection establishment time
TimeoutQueue string
Maximum time (in seconds) for a request to be left pending in queue when max_connections is reached
TimeoutServer string
Maximum server connection inactivity time
TimeoutTunnel string
Maximum tunnel inactivity time
FailoverHost string
Scaleway S3 bucket website to be served in case all backend servers are down NOTE : Only the host part of the Scaleway S3 bucket website is expected. E.g. 'failover-website.s3-website.fr-par.scw.cloud' if your bucket website URL is 'https://failover-website.s3-website.fr-par.scw.cloud/'.
ForwardPort int
User sessions will be forwarded to this port of backend servers
ForwardPortAlgorithm string
Load balancing algorithm
ForwardProtocol string
Backend protocol
HealthCheckDelay string
Interval between two HC requests
HealthCheckHttp BackendHealthCheckHttpArgs
HealthCheckHttps BackendHealthCheckHttpsArgs
HealthCheckMaxRetries int
Number of allowed failed HC requests before the backend server is marked down
HealthCheckPort int
Port the HC requests will be send to. Default to forward_port
HealthCheckSendProxy bool
Defines whether proxy protocol should be activated for the health check
HealthCheckTcp BackendHealthCheckTcpArgs
HealthCheckTimeout string
Timeout before we consider a HC request failed
HealthCheckTransientDelay string
Time to wait between two consecutive health checks when a backend server is in a transient state (going UP or DOWN)
IgnoreSslServerVerify bool
Specifies whether the Load Balancer should check the backend server’s certificate before initiating a connection
LbId Changes to this property will trigger replacement. string
The load-balancer ID
MaxConnections int
Maximum number of connections allowed per backend server
MaxRetries int
Number of retries when a backend server connection failed
Name string
The name of the backend
OnMarkedDownAction string
Modify what occurs when a backend server is marked down
ProxyProtocol string
Type of PROXY protocol to enable
RedispatchAttemptCount int
Whether to use another backend server on each attempt
SendProxyV2 bool
Enables PROXY protocol version 2

Deprecated: Please use proxy_protocol instead

ServerIps []string
Backend server IP addresses list (IPv4 or IPv6)
SslBridging bool
Enables SSL between load balancer and backend servers
StickySessions string
The type of sticky sessions
StickySessionsCookieName string
Cookie name for sticky sessions
TimeoutConnect string
Maximum initial server connection establishment time
TimeoutQueue string
Maximum time (in seconds) for a request to be left pending in queue when max_connections is reached
TimeoutServer string
Maximum server connection inactivity time
TimeoutTunnel string
Maximum tunnel inactivity time
failoverHost String
Scaleway S3 bucket website to be served in case all backend servers are down NOTE : Only the host part of the Scaleway S3 bucket website is expected. E.g. 'failover-website.s3-website.fr-par.scw.cloud' if your bucket website URL is 'https://failover-website.s3-website.fr-par.scw.cloud/'.
forwardPort Integer
User sessions will be forwarded to this port of backend servers
forwardPortAlgorithm String
Load balancing algorithm
forwardProtocol String
Backend protocol
healthCheckDelay String
Interval between two HC requests
healthCheckHttp BackendHealthCheckHttp
healthCheckHttps BackendHealthCheckHttps
healthCheckMaxRetries Integer
Number of allowed failed HC requests before the backend server is marked down
healthCheckPort Integer
Port the HC requests will be send to. Default to forward_port
healthCheckSendProxy Boolean
Defines whether proxy protocol should be activated for the health check
healthCheckTcp BackendHealthCheckTcp
healthCheckTimeout String
Timeout before we consider a HC request failed
healthCheckTransientDelay String
Time to wait between two consecutive health checks when a backend server is in a transient state (going UP or DOWN)
ignoreSslServerVerify Boolean
Specifies whether the Load Balancer should check the backend server’s certificate before initiating a connection
lbId Changes to this property will trigger replacement. String
The load-balancer ID
maxConnections Integer
Maximum number of connections allowed per backend server
maxRetries Integer
Number of retries when a backend server connection failed
name String
The name of the backend
onMarkedDownAction String
Modify what occurs when a backend server is marked down
proxyProtocol String
Type of PROXY protocol to enable
redispatchAttemptCount Integer
Whether to use another backend server on each attempt
sendProxyV2 Boolean
Enables PROXY protocol version 2

Deprecated: Please use proxy_protocol instead

serverIps List<String>
Backend server IP addresses list (IPv4 or IPv6)
sslBridging Boolean
Enables SSL between load balancer and backend servers
stickySessions String
The type of sticky sessions
stickySessionsCookieName String
Cookie name for sticky sessions
timeoutConnect String
Maximum initial server connection establishment time
timeoutQueue String
Maximum time (in seconds) for a request to be left pending in queue when max_connections is reached
timeoutServer String
Maximum server connection inactivity time
timeoutTunnel String
Maximum tunnel inactivity time
failoverHost string
Scaleway S3 bucket website to be served in case all backend servers are down NOTE : Only the host part of the Scaleway S3 bucket website is expected. E.g. 'failover-website.s3-website.fr-par.scw.cloud' if your bucket website URL is 'https://failover-website.s3-website.fr-par.scw.cloud/'.
forwardPort number
User sessions will be forwarded to this port of backend servers
forwardPortAlgorithm string
Load balancing algorithm
forwardProtocol string
Backend protocol
healthCheckDelay string
Interval between two HC requests
healthCheckHttp BackendHealthCheckHttp
healthCheckHttps BackendHealthCheckHttps
healthCheckMaxRetries number
Number of allowed failed HC requests before the backend server is marked down
healthCheckPort number
Port the HC requests will be send to. Default to forward_port
healthCheckSendProxy boolean
Defines whether proxy protocol should be activated for the health check
healthCheckTcp BackendHealthCheckTcp
healthCheckTimeout string
Timeout before we consider a HC request failed
healthCheckTransientDelay string
Time to wait between two consecutive health checks when a backend server is in a transient state (going UP or DOWN)
ignoreSslServerVerify boolean
Specifies whether the Load Balancer should check the backend server’s certificate before initiating a connection
lbId Changes to this property will trigger replacement. string
The load-balancer ID
maxConnections number
Maximum number of connections allowed per backend server
maxRetries number
Number of retries when a backend server connection failed
name string
The name of the backend
onMarkedDownAction string
Modify what occurs when a backend server is marked down
proxyProtocol string
Type of PROXY protocol to enable
redispatchAttemptCount number
Whether to use another backend server on each attempt
sendProxyV2 boolean
Enables PROXY protocol version 2

Deprecated: Please use proxy_protocol instead

serverIps string[]
Backend server IP addresses list (IPv4 or IPv6)
sslBridging boolean
Enables SSL between load balancer and backend servers
stickySessions string
The type of sticky sessions
stickySessionsCookieName string
Cookie name for sticky sessions
timeoutConnect string
Maximum initial server connection establishment time
timeoutQueue string
Maximum time (in seconds) for a request to be left pending in queue when max_connections is reached
timeoutServer string
Maximum server connection inactivity time
timeoutTunnel string
Maximum tunnel inactivity time
failover_host str
Scaleway S3 bucket website to be served in case all backend servers are down NOTE : Only the host part of the Scaleway S3 bucket website is expected. E.g. 'failover-website.s3-website.fr-par.scw.cloud' if your bucket website URL is 'https://failover-website.s3-website.fr-par.scw.cloud/'.
forward_port int
User sessions will be forwarded to this port of backend servers
forward_port_algorithm str
Load balancing algorithm
forward_protocol str
Backend protocol
health_check_delay str
Interval between two HC requests
health_check_http BackendHealthCheckHttpArgs
health_check_https BackendHealthCheckHttpsArgs
health_check_max_retries int
Number of allowed failed HC requests before the backend server is marked down
health_check_port int
Port the HC requests will be send to. Default to forward_port
health_check_send_proxy bool
Defines whether proxy protocol should be activated for the health check
health_check_tcp BackendHealthCheckTcpArgs
health_check_timeout str
Timeout before we consider a HC request failed
health_check_transient_delay str
Time to wait between two consecutive health checks when a backend server is in a transient state (going UP or DOWN)
ignore_ssl_server_verify bool
Specifies whether the Load Balancer should check the backend server’s certificate before initiating a connection
lb_id Changes to this property will trigger replacement. str
The load-balancer ID
max_connections int
Maximum number of connections allowed per backend server
max_retries int
Number of retries when a backend server connection failed
name str
The name of the backend
on_marked_down_action str
Modify what occurs when a backend server is marked down
proxy_protocol str
Type of PROXY protocol to enable
redispatch_attempt_count int
Whether to use another backend server on each attempt
send_proxy_v2 bool
Enables PROXY protocol version 2

Deprecated: Please use proxy_protocol instead

server_ips Sequence[str]
Backend server IP addresses list (IPv4 or IPv6)
ssl_bridging bool
Enables SSL between load balancer and backend servers
sticky_sessions str
The type of sticky sessions
sticky_sessions_cookie_name str
Cookie name for sticky sessions
timeout_connect str
Maximum initial server connection establishment time
timeout_queue str
Maximum time (in seconds) for a request to be left pending in queue when max_connections is reached
timeout_server str
Maximum server connection inactivity time
timeout_tunnel str
Maximum tunnel inactivity time
failoverHost String
Scaleway S3 bucket website to be served in case all backend servers are down NOTE : Only the host part of the Scaleway S3 bucket website is expected. E.g. 'failover-website.s3-website.fr-par.scw.cloud' if your bucket website URL is 'https://failover-website.s3-website.fr-par.scw.cloud/'.
forwardPort Number
User sessions will be forwarded to this port of backend servers
forwardPortAlgorithm String
Load balancing algorithm
forwardProtocol String
Backend protocol
healthCheckDelay String
Interval between two HC requests
healthCheckHttp Property Map
healthCheckHttps Property Map
healthCheckMaxRetries Number
Number of allowed failed HC requests before the backend server is marked down
healthCheckPort Number
Port the HC requests will be send to. Default to forward_port
healthCheckSendProxy Boolean
Defines whether proxy protocol should be activated for the health check
healthCheckTcp Property Map
healthCheckTimeout String
Timeout before we consider a HC request failed
healthCheckTransientDelay String
Time to wait between two consecutive health checks when a backend server is in a transient state (going UP or DOWN)
ignoreSslServerVerify Boolean
Specifies whether the Load Balancer should check the backend server’s certificate before initiating a connection
lbId Changes to this property will trigger replacement. String
The load-balancer ID
maxConnections Number
Maximum number of connections allowed per backend server
maxRetries Number
Number of retries when a backend server connection failed
name String
The name of the backend
onMarkedDownAction String
Modify what occurs when a backend server is marked down
proxyProtocol String
Type of PROXY protocol to enable
redispatchAttemptCount Number
Whether to use another backend server on each attempt
sendProxyV2 Boolean
Enables PROXY protocol version 2

Deprecated: Please use proxy_protocol instead

serverIps List<String>
Backend server IP addresses list (IPv4 or IPv6)
sslBridging Boolean
Enables SSL between load balancer and backend servers
stickySessions String
The type of sticky sessions
stickySessionsCookieName String
Cookie name for sticky sessions
timeoutConnect String
Maximum initial server connection establishment time
timeoutQueue String
Maximum time (in seconds) for a request to be left pending in queue when max_connections is reached
timeoutServer String
Maximum server connection inactivity time
timeoutTunnel String
Maximum tunnel inactivity time

Supporting Types

BackendHealthCheckHttp
, BackendHealthCheckHttpArgs

Uri This property is required. string
The HTTP endpoint URL to call for HC requests
Code int
The expected HTTP status code
HostHeader string
The HTTP host header to use for HC requests
Method string
The HTTP method to use for HC requests
Uri This property is required. string
The HTTP endpoint URL to call for HC requests
Code int
The expected HTTP status code
HostHeader string
The HTTP host header to use for HC requests
Method string
The HTTP method to use for HC requests
uri This property is required. String
The HTTP endpoint URL to call for HC requests
code Integer
The expected HTTP status code
hostHeader String
The HTTP host header to use for HC requests
method String
The HTTP method to use for HC requests
uri This property is required. string
The HTTP endpoint URL to call for HC requests
code number
The expected HTTP status code
hostHeader string
The HTTP host header to use for HC requests
method string
The HTTP method to use for HC requests
uri This property is required. str
The HTTP endpoint URL to call for HC requests
code int
The expected HTTP status code
host_header str
The HTTP host header to use for HC requests
method str
The HTTP method to use for HC requests
uri This property is required. String
The HTTP endpoint URL to call for HC requests
code Number
The expected HTTP status code
hostHeader String
The HTTP host header to use for HC requests
method String
The HTTP method to use for HC requests

BackendHealthCheckHttps
, BackendHealthCheckHttpsArgs

Uri This property is required. string
The HTTPS endpoint URL to call for HC requests
Code int
The expected HTTP status code
HostHeader string
The HTTP host header to use for HC requests
Method string
The HTTP method to use for HC requests
Sni string
The SNI to use for HC requests over SSL
Uri This property is required. string
The HTTPS endpoint URL to call for HC requests
Code int
The expected HTTP status code
HostHeader string
The HTTP host header to use for HC requests
Method string
The HTTP method to use for HC requests
Sni string
The SNI to use for HC requests over SSL
uri This property is required. String
The HTTPS endpoint URL to call for HC requests
code Integer
The expected HTTP status code
hostHeader String
The HTTP host header to use for HC requests
method String
The HTTP method to use for HC requests
sni String
The SNI to use for HC requests over SSL
uri This property is required. string
The HTTPS endpoint URL to call for HC requests
code number
The expected HTTP status code
hostHeader string
The HTTP host header to use for HC requests
method string
The HTTP method to use for HC requests
sni string
The SNI to use for HC requests over SSL
uri This property is required. str
The HTTPS endpoint URL to call for HC requests
code int
The expected HTTP status code
host_header str
The HTTP host header to use for HC requests
method str
The HTTP method to use for HC requests
sni str
The SNI to use for HC requests over SSL
uri This property is required. String
The HTTPS endpoint URL to call for HC requests
code Number
The expected HTTP status code
hostHeader String
The HTTP host header to use for HC requests
method String
The HTTP method to use for HC requests
sni String
The SNI to use for HC requests over SSL

Import

Load Balancer backends can be imported using {zone}/{id}, e.g.

bash

$ pulumi import scaleway:loadbalancers/backend:Backend backend01 fr-par-1/11111111-1111-1111-1111-111111111111
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
scaleway pulumiverse/pulumi-scaleway
License
Apache-2.0
Notes
This Pulumi package is based on the scaleway Terraform Provider.