Scaleway v1.25.0 published on Saturday, Mar 22, 2025 by pulumiverse
scaleway.getLbBackend
Explore with Pulumi AI
Deprecated: scaleway.index/getlbbackend.getLbBackend has been deprecated in favor of scaleway.loadbalancers/getbackend.getBackend
Get information about Scaleway Load Balancer backends.
For more information, see the main documentation or API documentation.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumi/scaleway";
import * as scaleway from "@pulumiverse/scaleway";
const main = new scaleway.loadbalancers.Ip("main", {});
const mainLoadBalancer = new scaleway.loadbalancers.LoadBalancer("main", {
ipId: main.id,
name: "data-test-lb-backend",
type: "LB-S",
});
const mainBackend = new scaleway.loadbalancers.Backend("main", {
lbId: mainLoadBalancer.id,
name: "backend01",
forwardProtocol: "http",
forwardPort: 80,
});
const byID = scaleway.loadbalancers.getBackendOutput({
backendId: mainBackend.id,
});
const byName = scaleway.loadbalancers.getBackendOutput({
name: mainBackend.name,
lbId: mainLoadBalancer.id,
});
import pulumi
import pulumi_scaleway as scaleway
import pulumiverse_scaleway as scaleway
main = scaleway.loadbalancers.Ip("main")
main_load_balancer = scaleway.loadbalancers.LoadBalancer("main",
ip_id=main.id,
name="data-test-lb-backend",
type="LB-S")
main_backend = scaleway.loadbalancers.Backend("main",
lb_id=main_load_balancer.id,
name="backend01",
forward_protocol="http",
forward_port=80)
by_id = scaleway.loadbalancers.get_backend_output(backend_id=main_backend.id)
by_name = scaleway.loadbalancers.get_backend_output(name=main_backend.name,
lb_id=main_load_balancer.id)
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 {
main, err := loadbalancers.NewIp(ctx, "main", nil)
if err != nil {
return err
}
mainLoadBalancer, err := loadbalancers.NewLoadBalancer(ctx, "main", &loadbalancers.LoadBalancerArgs{
IpId: main.ID(),
Name: pulumi.String("data-test-lb-backend"),
Type: pulumi.String("LB-S"),
})
if err != nil {
return err
}
mainBackend, err := loadbalancers.NewBackend(ctx, "main", &loadbalancers.BackendArgs{
LbId: mainLoadBalancer.ID(),
Name: pulumi.String("backend01"),
ForwardProtocol: pulumi.String("http"),
ForwardPort: pulumi.Int(80),
})
if err != nil {
return err
}
_ = loadbalancers.LookupBackendOutput(ctx, loadbalancers.GetBackendOutputArgs{
BackendId: mainBackend.ID(),
}, nil)
_ = loadbalancers.LookupBackendOutput(ctx, loadbalancers.GetBackendOutputArgs{
Name: mainBackend.Name,
LbId: mainLoadBalancer.ID(),
}, nil)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumi.Scaleway;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var main = new Scaleway.Loadbalancers.Ip("main");
var mainLoadBalancer = new Scaleway.Loadbalancers.LoadBalancer("main", new()
{
IpId = main.Id,
Name = "data-test-lb-backend",
Type = "LB-S",
});
var mainBackend = new Scaleway.Loadbalancers.Backend("main", new()
{
LbId = mainLoadBalancer.Id,
Name = "backend01",
ForwardProtocol = "http",
ForwardPort = 80,
});
var byID = Scaleway.Loadbalancers.GetBackend.Invoke(new()
{
BackendId = mainBackend.Id,
});
var byName = Scaleway.Loadbalancers.GetBackend.Invoke(new()
{
Name = mainBackend.Name,
LbId = mainLoadBalancer.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.loadbalancers.Ip;
import com.pulumi.scaleway.loadbalancers.LoadBalancer;
import com.pulumi.scaleway.loadbalancers.LoadBalancerArgs;
import com.pulumi.scaleway.loadbalancers.Backend;
import com.pulumi.scaleway.loadbalancers.BackendArgs;
import com.pulumi.scaleway.loadbalancers.LoadbalancersFunctions;
import com.pulumi.scaleway.loadbalancers.inputs.GetBackendArgs;
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 main = new Ip("main");
var mainLoadBalancer = new LoadBalancer("mainLoadBalancer", LoadBalancerArgs.builder()
.ipId(main.id())
.name("data-test-lb-backend")
.type("LB-S")
.build());
var mainBackend = new Backend("mainBackend", BackendArgs.builder()
.lbId(mainLoadBalancer.id())
.name("backend01")
.forwardProtocol("http")
.forwardPort("80")
.build());
final var byID = LoadbalancersFunctions.getBackend(GetBackendArgs.builder()
.backendId(mainBackend.id())
.build());
final var byName = LoadbalancersFunctions.getBackend(GetBackendArgs.builder()
.name(mainBackend.name())
.lbId(mainLoadBalancer.id())
.build());
}
}
resources:
main:
type: scaleway:loadbalancers:Ip
mainLoadBalancer:
type: scaleway:loadbalancers:LoadBalancer
name: main
properties:
ipId: ${main.id}
name: data-test-lb-backend
type: LB-S
mainBackend:
type: scaleway:loadbalancers:Backend
name: main
properties:
lbId: ${mainLoadBalancer.id}
name: backend01
forwardProtocol: http
forwardPort: '80'
variables:
byID:
fn::invoke:
function: scaleway:loadbalancers:getBackend
arguments:
backendId: ${mainBackend.id}
byName:
fn::invoke:
function: scaleway:loadbalancers:getBackend
arguments:
name: ${mainBackend.name}
lbId: ${mainLoadBalancer.id}
Using getLbBackend
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getLbBackend(args: GetLbBackendArgs, opts?: InvokeOptions): Promise<GetLbBackendResult>
function getLbBackendOutput(args: GetLbBackendOutputArgs, opts?: InvokeOptions): Output<GetLbBackendResult>
def get_lb_backend(backend_id: Optional[str] = None,
lb_id: Optional[str] = None,
name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetLbBackendResult
def get_lb_backend_output(backend_id: Optional[pulumi.Input[str]] = None,
lb_id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetLbBackendResult]
func GetLbBackend(ctx *Context, args *GetLbBackendArgs, opts ...InvokeOption) (*GetLbBackendResult, error)
func GetLbBackendOutput(ctx *Context, args *GetLbBackendOutputArgs, opts ...InvokeOption) GetLbBackendResultOutput
> Note: This function is named GetLbBackend
in the Go SDK.
public static class GetLbBackend
{
public static Task<GetLbBackendResult> InvokeAsync(GetLbBackendArgs args, InvokeOptions? opts = null)
public static Output<GetLbBackendResult> Invoke(GetLbBackendInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetLbBackendResult> getLbBackend(GetLbBackendArgs args, InvokeOptions options)
public static Output<GetLbBackendResult> getLbBackend(GetLbBackendArgs args, InvokeOptions options)
fn::invoke:
function: scaleway:index/getLbBackend:getLbBackend
arguments:
# arguments dictionary
The following arguments are supported:
- backend_
id str - The backend ID.
- Only one of
name
andbackend_id
should be specified.
- Only one of
- lb_
id str - Load Balancer ID this backend is attached to.
- name str
- The name of the backend.
- When using
name
you should specify thelb-id
- When using
getLbBackend Result
The following output properties are available:
- Failover
Host string - Forward
Port int - Forward
Port stringAlgorithm - Forward
Protocol string - Health
Check stringDelay - Health
Check List<Pulumiverse.Http Scaleway. Outputs. Get Lb Backend Health Check Http> - Health
Check List<Pulumiverse.Https Scaleway. Outputs. Get Lb Backend Health Check Http> - Health
Check intMax Retries - Health
Check intPort - Health
Check boolSend Proxy - Health
Check List<Pulumiverse.Tcps Scaleway. Outputs. Get Lb Backend Health Check Tcp> - Health
Check stringTimeout - Health
Check stringTransient Delay - Id string
- The provider-assigned unique ID for this managed resource.
- Ignore
Ssl boolServer Verify - Max
Connections int - Max
Retries int - On
Marked stringDown Action - Proxy
Protocol string - Redispatch
Attempt intCount - Send
Proxy boolV2 - Server
Ips List<string> - Ssl
Bridging bool - Sticky
Sessions string - string
- Timeout
Connect string - Timeout
Queue string - Timeout
Server string - Timeout
Tunnel string - Backend
Id string - Lb
Id string - Name string
- Failover
Host string - Forward
Port int - Forward
Port stringAlgorithm - Forward
Protocol string - Health
Check stringDelay - Health
Check []GetHttp Lb Backend Health Check Http - Health
Check []GetHttps Lb Backend Health Check Http - Health
Check intMax Retries - Health
Check intPort - Health
Check boolSend Proxy - Health
Check []GetTcps Lb Backend Health Check Tcp - Health
Check stringTimeout - Health
Check stringTransient Delay - Id string
- The provider-assigned unique ID for this managed resource.
- Ignore
Ssl boolServer Verify - Max
Connections int - Max
Retries int - On
Marked stringDown Action - Proxy
Protocol string - Redispatch
Attempt intCount - Send
Proxy boolV2 - Server
Ips []string - Ssl
Bridging bool - Sticky
Sessions string - string
- Timeout
Connect string - Timeout
Queue string - Timeout
Server string - Timeout
Tunnel string - Backend
Id string - Lb
Id string - Name string
- failover
Host String - forward
Port Integer - forward
Port StringAlgorithm - forward
Protocol String - health
Check StringDelay - health
Check List<GetHttp Lb Backend Health Check Http> - health
Check List<GetHttps Lb Backend Health Check Http> - health
Check IntegerMax Retries - health
Check IntegerPort - health
Check BooleanSend Proxy - health
Check List<GetTcps Lb Backend Health Check Tcp> - health
Check StringTimeout - health
Check StringTransient Delay - id String
- The provider-assigned unique ID for this managed resource.
- ignore
Ssl BooleanServer Verify - max
Connections Integer - max
Retries Integer - on
Marked StringDown Action - proxy
Protocol String - redispatch
Attempt IntegerCount - send
Proxy BooleanV2 - server
Ips List<String> - ssl
Bridging Boolean - sticky
Sessions String - String
- timeout
Connect String - timeout
Queue String - timeout
Server String - timeout
Tunnel String - backend
Id String - lb
Id String - name String
- failover
Host string - forward
Port number - forward
Port stringAlgorithm - forward
Protocol string - health
Check stringDelay - health
Check GetHttp Lb Backend Health Check Http[] - health
Check GetHttps Lb Backend Health Check Http[] - health
Check numberMax Retries - health
Check numberPort - health
Check booleanSend Proxy - health
Check GetTcps Lb Backend Health Check Tcp[] - health
Check stringTimeout - health
Check stringTransient Delay - id string
- The provider-assigned unique ID for this managed resource.
- ignore
Ssl booleanServer Verify - max
Connections number - max
Retries number - on
Marked stringDown Action - proxy
Protocol string - redispatch
Attempt numberCount - send
Proxy booleanV2 - server
Ips string[] - ssl
Bridging boolean - sticky
Sessions string - string
- timeout
Connect string - timeout
Queue string - timeout
Server string - timeout
Tunnel string - backend
Id string - lb
Id string - name string
- failover_
host str - forward_
port int - forward_
port_ stralgorithm - forward_
protocol str - health_
check_ strdelay - health_
check_ Sequence[Gethttp Lb Backend Health Check Http] - health_
check_ Sequence[Gethttps Lb Backend Health Check Http] - health_
check_ intmax_ retries - health_
check_ intport - health_
check_ boolsend_ proxy - health_
check_ Sequence[Gettcps Lb Backend Health Check Tcp] - health_
check_ strtimeout - health_
check_ strtransient_ delay - id str
- The provider-assigned unique ID for this managed resource.
- ignore_
ssl_ boolserver_ verify - max_
connections int - max_
retries int - on_
marked_ strdown_ action - proxy_
protocol str - redispatch_
attempt_ intcount - send_
proxy_ boolv2 - server_
ips Sequence[str] - ssl_
bridging bool - sticky_
sessions str - str
- timeout_
connect str - timeout_
queue str - timeout_
server str - timeout_
tunnel str - backend_
id str - lb_
id str - name str
- failover
Host String - forward
Port Number - forward
Port StringAlgorithm - forward
Protocol String - health
Check StringDelay - health
Check List<Property Map>Http - health
Check List<Property Map>Https - health
Check NumberMax Retries - health
Check NumberPort - health
Check BooleanSend Proxy - health
Check List<Property Map>Tcps - health
Check StringTimeout - health
Check StringTransient Delay - id String
- The provider-assigned unique ID for this managed resource.
- ignore
Ssl BooleanServer Verify - max
Connections Number - max
Retries Number - on
Marked StringDown Action - proxy
Protocol String - redispatch
Attempt NumberCount - send
Proxy BooleanV2 - server
Ips List<String> - ssl
Bridging Boolean - sticky
Sessions String - String
- timeout
Connect String - timeout
Queue String - timeout
Server String - timeout
Tunnel String - backend
Id String - lb
Id String - name String
Supporting Types
GetLbBackendHealthCheckHttp
- Code int
- The expected HTTP status code
- Host
Header 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 string
- The HTTPS endpoint URL to call for HC requests
- Code int
- The expected HTTP status code
- Host
Header 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 string
- The HTTPS endpoint URL to call for HC requests
- code Integer
- The expected HTTP status code
- host
Header 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 String
- The HTTPS endpoint URL to call for HC requests
- code number
- The expected HTTP status code
- host
Header 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 string
- 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 str
- The HTTPS endpoint URL to call for HC requests
- code Number
- The expected HTTP status code
- host
Header 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 String
- The HTTPS endpoint URL to call for HC requests
Package Details
- Repository
- scaleway pulumiverse/pulumi-scaleway
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scaleway
Terraform Provider.