upcloud.LoadbalancerBackend
Explore with Pulumi AI
This resource represents load balancer backend service.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as upcloud from "@upcloud/pulumi-upcloud";
const config = new pulumi.Config();
const lbZone = config.get("lbZone") || "fi-hel2";
const lbNetwork = new upcloud.Network("lb_network", {
name: "lb-test-net",
zone: lbZone,
ipNetwork: {
address: "10.0.0.0/24",
dhcp: true,
family: "IPv4",
},
});
const lb = new upcloud.Loadbalancer("lb", {
configuredStatus: "started",
name: "lb-test",
plan: "development",
zone: lbZone,
network: upcloudNetwork.lbNetwork.id,
});
const lbBe1 = new upcloud.LoadbalancerBackend("lb_be_1", {
loadbalancer: upcloudLoadbalancer.lb.id,
name: "lb-be-1-test",
});
import pulumi
import pulumi_upcloud as upcloud
config = pulumi.Config()
lb_zone = config.get("lbZone")
if lb_zone is None:
lb_zone = "fi-hel2"
lb_network = upcloud.Network("lb_network",
name="lb-test-net",
zone=lb_zone,
ip_network={
"address": "10.0.0.0/24",
"dhcp": True,
"family": "IPv4",
})
lb = upcloud.Loadbalancer("lb",
configured_status="started",
name="lb-test",
plan="development",
zone=lb_zone,
network=upcloud_network["lbNetwork"]["id"])
lb_be1 = upcloud.LoadbalancerBackend("lb_be_1",
loadbalancer=upcloud_loadbalancer["lb"]["id"],
name="lb-be-1-test")
package main
import (
"github.com/UpCloudLtd/pulumi-upcloud/sdk/go/upcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
lbZone := "fi-hel2"
if param := cfg.Get("lbZone"); param != "" {
lbZone = param
}
_, err := upcloud.NewNetwork(ctx, "lb_network", &upcloud.NetworkArgs{
Name: pulumi.String("lb-test-net"),
Zone: pulumi.String(lbZone),
IpNetwork: &upcloud.NetworkIpNetworkArgs{
Address: pulumi.String("10.0.0.0/24"),
Dhcp: pulumi.Bool(true),
Family: pulumi.String("IPv4"),
},
})
if err != nil {
return err
}
_, err = upcloud.NewLoadbalancer(ctx, "lb", &upcloud.LoadbalancerArgs{
ConfiguredStatus: pulumi.String("started"),
Name: pulumi.String("lb-test"),
Plan: pulumi.String("development"),
Zone: pulumi.String(lbZone),
Network: pulumi.Any(upcloudNetwork.LbNetwork.Id),
})
if err != nil {
return err
}
_, err = upcloud.NewLoadbalancerBackend(ctx, "lb_be_1", &upcloud.LoadbalancerBackendArgs{
Loadbalancer: pulumi.Any(upcloudLoadbalancer.Lb.Id),
Name: pulumi.String("lb-be-1-test"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using UpCloud = UpCloud.Pulumi.UpCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var lbZone = config.Get("lbZone") ?? "fi-hel2";
var lbNetwork = new UpCloud.Network("lb_network", new()
{
Name = "lb-test-net",
Zone = lbZone,
IpNetwork = new UpCloud.Inputs.NetworkIpNetworkArgs
{
Address = "10.0.0.0/24",
Dhcp = true,
Family = "IPv4",
},
});
var lb = new UpCloud.Loadbalancer("lb", new()
{
ConfiguredStatus = "started",
Name = "lb-test",
Plan = "development",
Zone = lbZone,
Network = upcloudNetwork.LbNetwork.Id,
});
var lbBe1 = new UpCloud.LoadbalancerBackend("lb_be_1", new()
{
Loadbalancer = upcloudLoadbalancer.Lb.Id,
Name = "lb-be-1-test",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.upcloud.Network;
import com.pulumi.upcloud.NetworkArgs;
import com.pulumi.upcloud.inputs.NetworkIpNetworkArgs;
import com.pulumi.upcloud.Loadbalancer;
import com.pulumi.upcloud.LoadbalancerArgs;
import com.pulumi.upcloud.LoadbalancerBackend;
import com.pulumi.upcloud.LoadbalancerBackendArgs;
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 config = ctx.config();
final var lbZone = config.get("lbZone").orElse("fi-hel2");
var lbNetwork = new Network("lbNetwork", NetworkArgs.builder()
.name("lb-test-net")
.zone(lbZone)
.ipNetwork(NetworkIpNetworkArgs.builder()
.address("10.0.0.0/24")
.dhcp(true)
.family("IPv4")
.build())
.build());
var lb = new Loadbalancer("lb", LoadbalancerArgs.builder()
.configuredStatus("started")
.name("lb-test")
.plan("development")
.zone(lbZone)
.network(upcloudNetwork.lbNetwork().id())
.build());
var lbBe1 = new LoadbalancerBackend("lbBe1", LoadbalancerBackendArgs.builder()
.loadbalancer(upcloudLoadbalancer.lb().id())
.name("lb-be-1-test")
.build());
}
}
configuration:
lbZone:
type: string
default: fi-hel2
resources:
lbNetwork:
type: upcloud:Network
name: lb_network
properties:
name: lb-test-net
zone: ${lbZone}
ipNetwork:
address: 10.0.0.0/24
dhcp: true
family: IPv4
lb:
type: upcloud:Loadbalancer
properties:
configuredStatus: started
name: lb-test
plan: development
zone: ${lbZone}
network: ${upcloudNetwork.lbNetwork.id}
lbBe1:
type: upcloud:LoadbalancerBackend
name: lb_be_1
properties:
loadbalancer: ${upcloudLoadbalancer.lb.id}
name: lb-be-1-test
Create LoadbalancerBackend Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LoadbalancerBackend(name: string, args: LoadbalancerBackendArgs, opts?: CustomResourceOptions);
@overload
def LoadbalancerBackend(resource_name: str,
args: LoadbalancerBackendArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LoadbalancerBackend(resource_name: str,
opts: Optional[ResourceOptions] = None,
loadbalancer: Optional[str] = None,
name: Optional[str] = None,
properties: Optional[LoadbalancerBackendPropertiesArgs] = None,
resolver_name: Optional[str] = None)
func NewLoadbalancerBackend(ctx *Context, name string, args LoadbalancerBackendArgs, opts ...ResourceOption) (*LoadbalancerBackend, error)
public LoadbalancerBackend(string name, LoadbalancerBackendArgs args, CustomResourceOptions? opts = null)
public LoadbalancerBackend(String name, LoadbalancerBackendArgs args)
public LoadbalancerBackend(String name, LoadbalancerBackendArgs args, CustomResourceOptions options)
type: upcloud:LoadbalancerBackend
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args LoadbalancerBackendArgs
- 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 LoadbalancerBackendArgs
- 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 LoadbalancerBackendArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LoadbalancerBackendArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LoadbalancerBackendArgs
- 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 loadbalancerBackendResource = new UpCloud.LoadbalancerBackend("loadbalancerBackendResource", new()
{
Loadbalancer = "string",
Name = "string",
Properties = new UpCloud.Inputs.LoadbalancerBackendPropertiesArgs
{
HealthCheckExpectedStatus = 0,
HealthCheckFall = 0,
HealthCheckInterval = 0,
HealthCheckRise = 0,
HealthCheckTlsVerify = false,
HealthCheckType = "string",
HealthCheckUrl = "string",
Http2Enabled = false,
OutboundProxyProtocol = "string",
StickySessionCookieName = "string",
TimeoutServer = 0,
TimeoutTunnel = 0,
TlsEnabled = false,
TlsUseSystemCa = false,
TlsVerify = false,
},
ResolverName = "string",
});
example, err := upcloud.NewLoadbalancerBackend(ctx, "loadbalancerBackendResource", &upcloud.LoadbalancerBackendArgs{
Loadbalancer: pulumi.String("string"),
Name: pulumi.String("string"),
Properties: &upcloud.LoadbalancerBackendPropertiesArgs{
HealthCheckExpectedStatus: pulumi.Int(0),
HealthCheckFall: pulumi.Int(0),
HealthCheckInterval: pulumi.Int(0),
HealthCheckRise: pulumi.Int(0),
HealthCheckTlsVerify: pulumi.Bool(false),
HealthCheckType: pulumi.String("string"),
HealthCheckUrl: pulumi.String("string"),
Http2Enabled: pulumi.Bool(false),
OutboundProxyProtocol: pulumi.String("string"),
StickySessionCookieName: pulumi.String("string"),
TimeoutServer: pulumi.Int(0),
TimeoutTunnel: pulumi.Int(0),
TlsEnabled: pulumi.Bool(false),
TlsUseSystemCa: pulumi.Bool(false),
TlsVerify: pulumi.Bool(false),
},
ResolverName: pulumi.String("string"),
})
var loadbalancerBackendResource = new LoadbalancerBackend("loadbalancerBackendResource", LoadbalancerBackendArgs.builder()
.loadbalancer("string")
.name("string")
.properties(LoadbalancerBackendPropertiesArgs.builder()
.healthCheckExpectedStatus(0)
.healthCheckFall(0)
.healthCheckInterval(0)
.healthCheckRise(0)
.healthCheckTlsVerify(false)
.healthCheckType("string")
.healthCheckUrl("string")
.http2Enabled(false)
.outboundProxyProtocol("string")
.stickySessionCookieName("string")
.timeoutServer(0)
.timeoutTunnel(0)
.tlsEnabled(false)
.tlsUseSystemCa(false)
.tlsVerify(false)
.build())
.resolverName("string")
.build());
loadbalancer_backend_resource = upcloud.LoadbalancerBackend("loadbalancerBackendResource",
loadbalancer="string",
name="string",
properties={
"health_check_expected_status": 0,
"health_check_fall": 0,
"health_check_interval": 0,
"health_check_rise": 0,
"health_check_tls_verify": False,
"health_check_type": "string",
"health_check_url": "string",
"http2_enabled": False,
"outbound_proxy_protocol": "string",
"sticky_session_cookie_name": "string",
"timeout_server": 0,
"timeout_tunnel": 0,
"tls_enabled": False,
"tls_use_system_ca": False,
"tls_verify": False,
},
resolver_name="string")
const loadbalancerBackendResource = new upcloud.LoadbalancerBackend("loadbalancerBackendResource", {
loadbalancer: "string",
name: "string",
properties: {
healthCheckExpectedStatus: 0,
healthCheckFall: 0,
healthCheckInterval: 0,
healthCheckRise: 0,
healthCheckTlsVerify: false,
healthCheckType: "string",
healthCheckUrl: "string",
http2Enabled: false,
outboundProxyProtocol: "string",
stickySessionCookieName: "string",
timeoutServer: 0,
timeoutTunnel: 0,
tlsEnabled: false,
tlsUseSystemCa: false,
tlsVerify: false,
},
resolverName: "string",
});
type: upcloud:LoadbalancerBackend
properties:
loadbalancer: string
name: string
properties:
healthCheckExpectedStatus: 0
healthCheckFall: 0
healthCheckInterval: 0
healthCheckRise: 0
healthCheckTlsVerify: false
healthCheckType: string
healthCheckUrl: string
http2Enabled: false
outboundProxyProtocol: string
stickySessionCookieName: string
timeoutServer: 0
timeoutTunnel: 0
tlsEnabled: false
tlsUseSystemCa: false
tlsVerify: false
resolverName: string
LoadbalancerBackend 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 LoadbalancerBackend resource accepts the following input properties:
- Loadbalancer string
- UUID of the load balancer to which the backend is connected.
- Name string
- The name of the backend. Must be unique within the load balancer service.
- Properties
Up
Cloud. Pulumi. Up Cloud. Inputs. Loadbalancer Backend Properties - Resolver
Name string - Domain name resolver used with dynamic type members.
- Loadbalancer string
- UUID of the load balancer to which the backend is connected.
- Name string
- The name of the backend. Must be unique within the load balancer service.
- Properties
Loadbalancer
Backend Properties Args - Resolver
Name string - Domain name resolver used with dynamic type members.
- loadbalancer String
- UUID of the load balancer to which the backend is connected.
- name String
- The name of the backend. Must be unique within the load balancer service.
- properties
Loadbalancer
Backend Properties - resolver
Name String - Domain name resolver used with dynamic type members.
- loadbalancer string
- UUID of the load balancer to which the backend is connected.
- name string
- The name of the backend. Must be unique within the load balancer service.
- properties
Loadbalancer
Backend Properties - resolver
Name string - Domain name resolver used with dynamic type members.
- loadbalancer str
- UUID of the load balancer to which the backend is connected.
- name str
- The name of the backend. Must be unique within the load balancer service.
- properties
Loadbalancer
Backend Properties Args - resolver_
name str - Domain name resolver used with dynamic type members.
- loadbalancer String
- UUID of the load balancer to which the backend is connected.
- name String
- The name of the backend. Must be unique within the load balancer service.
- properties Property Map
- resolver
Name String - Domain name resolver used with dynamic type members.
Outputs
All input properties are implicitly available as output properties. Additionally, the LoadbalancerBackend resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Members List<string>
- Backend member server UUIDs. Members receive traffic dispatched from the frontends.
- Tls
Configs List<string> - Set of TLS config names.
- Id string
- The provider-assigned unique ID for this managed resource.
- Members []string
- Backend member server UUIDs. Members receive traffic dispatched from the frontends.
- Tls
Configs []string - Set of TLS config names.
- id String
- The provider-assigned unique ID for this managed resource.
- members List<String>
- Backend member server UUIDs. Members receive traffic dispatched from the frontends.
- tls
Configs List<String> - Set of TLS config names.
- id string
- The provider-assigned unique ID for this managed resource.
- members string[]
- Backend member server UUIDs. Members receive traffic dispatched from the frontends.
- tls
Configs string[] - Set of TLS config names.
- id str
- The provider-assigned unique ID for this managed resource.
- members Sequence[str]
- Backend member server UUIDs. Members receive traffic dispatched from the frontends.
- tls_
configs Sequence[str] - Set of TLS config names.
- id String
- The provider-assigned unique ID for this managed resource.
- members List<String>
- Backend member server UUIDs. Members receive traffic dispatched from the frontends.
- tls
Configs List<String> - Set of TLS config names.
Look up Existing LoadbalancerBackend Resource
Get an existing LoadbalancerBackend 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?: LoadbalancerBackendState, opts?: CustomResourceOptions): LoadbalancerBackend
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
loadbalancer: Optional[str] = None,
members: Optional[Sequence[str]] = None,
name: Optional[str] = None,
properties: Optional[LoadbalancerBackendPropertiesArgs] = None,
resolver_name: Optional[str] = None,
tls_configs: Optional[Sequence[str]] = None) -> LoadbalancerBackend
func GetLoadbalancerBackend(ctx *Context, name string, id IDInput, state *LoadbalancerBackendState, opts ...ResourceOption) (*LoadbalancerBackend, error)
public static LoadbalancerBackend Get(string name, Input<string> id, LoadbalancerBackendState? state, CustomResourceOptions? opts = null)
public static LoadbalancerBackend get(String name, Output<String> id, LoadbalancerBackendState state, CustomResourceOptions options)
resources: _: type: upcloud:LoadbalancerBackend get: id: ${id}
- 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.
- Loadbalancer string
- UUID of the load balancer to which the backend is connected.
- Members List<string>
- Backend member server UUIDs. Members receive traffic dispatched from the frontends.
- Name string
- The name of the backend. Must be unique within the load balancer service.
- Properties
Up
Cloud. Pulumi. Up Cloud. Inputs. Loadbalancer Backend Properties - Resolver
Name string - Domain name resolver used with dynamic type members.
- Tls
Configs List<string> - Set of TLS config names.
- Loadbalancer string
- UUID of the load balancer to which the backend is connected.
- Members []string
- Backend member server UUIDs. Members receive traffic dispatched from the frontends.
- Name string
- The name of the backend. Must be unique within the load balancer service.
- Properties
Loadbalancer
Backend Properties Args - Resolver
Name string - Domain name resolver used with dynamic type members.
- Tls
Configs []string - Set of TLS config names.
- loadbalancer String
- UUID of the load balancer to which the backend is connected.
- members List<String>
- Backend member server UUIDs. Members receive traffic dispatched from the frontends.
- name String
- The name of the backend. Must be unique within the load balancer service.
- properties
Loadbalancer
Backend Properties - resolver
Name String - Domain name resolver used with dynamic type members.
- tls
Configs List<String> - Set of TLS config names.
- loadbalancer string
- UUID of the load balancer to which the backend is connected.
- members string[]
- Backend member server UUIDs. Members receive traffic dispatched from the frontends.
- name string
- The name of the backend. Must be unique within the load balancer service.
- properties
Loadbalancer
Backend Properties - resolver
Name string - Domain name resolver used with dynamic type members.
- tls
Configs string[] - Set of TLS config names.
- loadbalancer str
- UUID of the load balancer to which the backend is connected.
- members Sequence[str]
- Backend member server UUIDs. Members receive traffic dispatched from the frontends.
- name str
- The name of the backend. Must be unique within the load balancer service.
- properties
Loadbalancer
Backend Properties Args - resolver_
name str - Domain name resolver used with dynamic type members.
- tls_
configs Sequence[str] - Set of TLS config names.
- loadbalancer String
- UUID of the load balancer to which the backend is connected.
- members List<String>
- Backend member server UUIDs. Members receive traffic dispatched from the frontends.
- name String
- The name of the backend. Must be unique within the load balancer service.
- properties Property Map
- resolver
Name String - Domain name resolver used with dynamic type members.
- tls
Configs List<String> - Set of TLS config names.
Supporting Types
LoadbalancerBackendProperties, LoadbalancerBackendPropertiesArgs
- Health
Check intExpected Status - Expected HTTP status code returned by the customer application to mark server as healthy. Ignored for
tcp
health_check_type
. - Health
Check intFall - Sets how many failed health checks are allowed until the backend member is taken off from the rotation.
- Health
Check intInterval - Interval between health checks in seconds.
- Health
Check intRise - Sets how many successful health checks are required to put the backend member back into rotation.
- Health
Check boolTls Verify - Enables certificate verification with the system CA certificate bundle. Works with https scheme in health_check_url, otherwise ignored.
- Health
Check stringType - Health check type.
- Health
Check stringUrl - Target path for health check HTTP GET requests. Ignored for
tcp
health_check_type
. - Http2Enabled bool
- Allow HTTP/2 connections to backend members by utilizing ALPN extension of TLS protocol, therefore it can only be enabled when tls_enabled is set to true. Note: members should support HTTP/2 for this setting to work.
- Outbound
Proxy stringProtocol - Enable outbound proxy protocol by setting the desired version. Defaults to empty string. Empty string disables proxy protocol.
- string
- Sets sticky session cookie name. Empty string disables sticky session.
- Timeout
Server int - Backend server timeout in seconds.
- Timeout
Tunnel int - Maximum inactivity time on the client and server side for tunnels in seconds.
- Tls
Enabled bool - Enables TLS connection from the load balancer to backend servers.
- Tls
Use boolSystem Ca - If enabled, then the system CA certificate bundle will be used for the certificate verification.
- Tls
Verify bool - Enables backend servers certificate verification. Please make sure that TLS config with the certificate bundle of type authority attached to the backend or
tls_use_system_ca
enabled. Note:tls_verify
has preference overhealth_check_tls_verify
whentls_enabled
in true.
- Health
Check intExpected Status - Expected HTTP status code returned by the customer application to mark server as healthy. Ignored for
tcp
health_check_type
. - Health
Check intFall - Sets how many failed health checks are allowed until the backend member is taken off from the rotation.
- Health
Check intInterval - Interval between health checks in seconds.
- Health
Check intRise - Sets how many successful health checks are required to put the backend member back into rotation.
- Health
Check boolTls Verify - Enables certificate verification with the system CA certificate bundle. Works with https scheme in health_check_url, otherwise ignored.
- Health
Check stringType - Health check type.
- Health
Check stringUrl - Target path for health check HTTP GET requests. Ignored for
tcp
health_check_type
. - Http2Enabled bool
- Allow HTTP/2 connections to backend members by utilizing ALPN extension of TLS protocol, therefore it can only be enabled when tls_enabled is set to true. Note: members should support HTTP/2 for this setting to work.
- Outbound
Proxy stringProtocol - Enable outbound proxy protocol by setting the desired version. Defaults to empty string. Empty string disables proxy protocol.
- string
- Sets sticky session cookie name. Empty string disables sticky session.
- Timeout
Server int - Backend server timeout in seconds.
- Timeout
Tunnel int - Maximum inactivity time on the client and server side for tunnels in seconds.
- Tls
Enabled bool - Enables TLS connection from the load balancer to backend servers.
- Tls
Use boolSystem Ca - If enabled, then the system CA certificate bundle will be used for the certificate verification.
- Tls
Verify bool - Enables backend servers certificate verification. Please make sure that TLS config with the certificate bundle of type authority attached to the backend or
tls_use_system_ca
enabled. Note:tls_verify
has preference overhealth_check_tls_verify
whentls_enabled
in true.
- health
Check IntegerExpected Status - Expected HTTP status code returned by the customer application to mark server as healthy. Ignored for
tcp
health_check_type
. - health
Check IntegerFall - Sets how many failed health checks are allowed until the backend member is taken off from the rotation.
- health
Check IntegerInterval - Interval between health checks in seconds.
- health
Check IntegerRise - Sets how many successful health checks are required to put the backend member back into rotation.
- health
Check BooleanTls Verify - Enables certificate verification with the system CA certificate bundle. Works with https scheme in health_check_url, otherwise ignored.
- health
Check StringType - Health check type.
- health
Check StringUrl - Target path for health check HTTP GET requests. Ignored for
tcp
health_check_type
. - http2Enabled Boolean
- Allow HTTP/2 connections to backend members by utilizing ALPN extension of TLS protocol, therefore it can only be enabled when tls_enabled is set to true. Note: members should support HTTP/2 for this setting to work.
- outbound
Proxy StringProtocol - Enable outbound proxy protocol by setting the desired version. Defaults to empty string. Empty string disables proxy protocol.
- String
- Sets sticky session cookie name. Empty string disables sticky session.
- timeout
Server Integer - Backend server timeout in seconds.
- timeout
Tunnel Integer - Maximum inactivity time on the client and server side for tunnels in seconds.
- tls
Enabled Boolean - Enables TLS connection from the load balancer to backend servers.
- tls
Use BooleanSystem Ca - If enabled, then the system CA certificate bundle will be used for the certificate verification.
- tls
Verify Boolean - Enables backend servers certificate verification. Please make sure that TLS config with the certificate bundle of type authority attached to the backend or
tls_use_system_ca
enabled. Note:tls_verify
has preference overhealth_check_tls_verify
whentls_enabled
in true.
- health
Check numberExpected Status - Expected HTTP status code returned by the customer application to mark server as healthy. Ignored for
tcp
health_check_type
. - health
Check numberFall - Sets how many failed health checks are allowed until the backend member is taken off from the rotation.
- health
Check numberInterval - Interval between health checks in seconds.
- health
Check numberRise - Sets how many successful health checks are required to put the backend member back into rotation.
- health
Check booleanTls Verify - Enables certificate verification with the system CA certificate bundle. Works with https scheme in health_check_url, otherwise ignored.
- health
Check stringType - Health check type.
- health
Check stringUrl - Target path for health check HTTP GET requests. Ignored for
tcp
health_check_type
. - http2Enabled boolean
- Allow HTTP/2 connections to backend members by utilizing ALPN extension of TLS protocol, therefore it can only be enabled when tls_enabled is set to true. Note: members should support HTTP/2 for this setting to work.
- outbound
Proxy stringProtocol - Enable outbound proxy protocol by setting the desired version. Defaults to empty string. Empty string disables proxy protocol.
- string
- Sets sticky session cookie name. Empty string disables sticky session.
- timeout
Server number - Backend server timeout in seconds.
- timeout
Tunnel number - Maximum inactivity time on the client and server side for tunnels in seconds.
- tls
Enabled boolean - Enables TLS connection from the load balancer to backend servers.
- tls
Use booleanSystem Ca - If enabled, then the system CA certificate bundle will be used for the certificate verification.
- tls
Verify boolean - Enables backend servers certificate verification. Please make sure that TLS config with the certificate bundle of type authority attached to the backend or
tls_use_system_ca
enabled. Note:tls_verify
has preference overhealth_check_tls_verify
whentls_enabled
in true.
- health_
check_ intexpected_ status - Expected HTTP status code returned by the customer application to mark server as healthy. Ignored for
tcp
health_check_type
. - health_
check_ intfall - Sets how many failed health checks are allowed until the backend member is taken off from the rotation.
- health_
check_ intinterval - Interval between health checks in seconds.
- health_
check_ intrise - Sets how many successful health checks are required to put the backend member back into rotation.
- health_
check_ booltls_ verify - Enables certificate verification with the system CA certificate bundle. Works with https scheme in health_check_url, otherwise ignored.
- health_
check_ strtype - Health check type.
- health_
check_ strurl - Target path for health check HTTP GET requests. Ignored for
tcp
health_check_type
. - http2_
enabled bool - Allow HTTP/2 connections to backend members by utilizing ALPN extension of TLS protocol, therefore it can only be enabled when tls_enabled is set to true. Note: members should support HTTP/2 for this setting to work.
- outbound_
proxy_ strprotocol - Enable outbound proxy protocol by setting the desired version. Defaults to empty string. Empty string disables proxy protocol.
- str
- Sets sticky session cookie name. Empty string disables sticky session.
- timeout_
server int - Backend server timeout in seconds.
- timeout_
tunnel int - Maximum inactivity time on the client and server side for tunnels in seconds.
- tls_
enabled bool - Enables TLS connection from the load balancer to backend servers.
- tls_
use_ boolsystem_ ca - If enabled, then the system CA certificate bundle will be used for the certificate verification.
- tls_
verify bool - Enables backend servers certificate verification. Please make sure that TLS config with the certificate bundle of type authority attached to the backend or
tls_use_system_ca
enabled. Note:tls_verify
has preference overhealth_check_tls_verify
whentls_enabled
in true.
- health
Check NumberExpected Status - Expected HTTP status code returned by the customer application to mark server as healthy. Ignored for
tcp
health_check_type
. - health
Check NumberFall - Sets how many failed health checks are allowed until the backend member is taken off from the rotation.
- health
Check NumberInterval - Interval between health checks in seconds.
- health
Check NumberRise - Sets how many successful health checks are required to put the backend member back into rotation.
- health
Check BooleanTls Verify - Enables certificate verification with the system CA certificate bundle. Works with https scheme in health_check_url, otherwise ignored.
- health
Check StringType - Health check type.
- health
Check StringUrl - Target path for health check HTTP GET requests. Ignored for
tcp
health_check_type
. - http2Enabled Boolean
- Allow HTTP/2 connections to backend members by utilizing ALPN extension of TLS protocol, therefore it can only be enabled when tls_enabled is set to true. Note: members should support HTTP/2 for this setting to work.
- outbound
Proxy StringProtocol - Enable outbound proxy protocol by setting the desired version. Defaults to empty string. Empty string disables proxy protocol.
- String
- Sets sticky session cookie name. Empty string disables sticky session.
- timeout
Server Number - Backend server timeout in seconds.
- timeout
Tunnel Number - Maximum inactivity time on the client and server side for tunnels in seconds.
- tls
Enabled Boolean - Enables TLS connection from the load balancer to backend servers.
- tls
Use BooleanSystem Ca - If enabled, then the system CA certificate bundle will be used for the certificate verification.
- tls
Verify Boolean - Enables backend servers certificate verification. Please make sure that TLS config with the certificate bundle of type authority attached to the backend or
tls_use_system_ca
enabled. Note:tls_verify
has preference overhealth_check_tls_verify
whentls_enabled
in true.
Package Details
- Repository
- upcloud UpCloudLtd/pulumi-upcloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
upcloud
Terraform Provider.