Scaleway v1.25.0 published on Saturday, Mar 22, 2025 by pulumiverse
scaleway.loadbalancers.getFrontend
Explore with Pulumi AI
Get information about Scaleway Load Balancer frontends.
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 ip01 = new scaleway.loadbalancers.Ip("ip01", {});
const lb01 = new scaleway.loadbalancers.LoadBalancer("lb01", {
ipId: ip01.id,
name: "test-lb",
type: "lb-s",
});
const bkd01 = new scaleway.loadbalancers.Backend("bkd01", {
lbId: lb01.id,
forwardProtocol: "tcp",
forwardPort: 80,
proxyProtocol: "none",
});
const frt01 = new scaleway.loadbalancers.Frontend("frt01", {
lbId: lb01.id,
backendId: bkd01.id,
inboundPort: 80,
});
const byID = scaleway.loadbalancers.getFrontendOutput({
frontendId: frt01.id,
});
const byName = scaleway.loadbalancers.getFrontendOutput({
name: frt01.name,
lbId: lb01.id,
});
import pulumi
import pulumi_scaleway as scaleway
import pulumiverse_scaleway as scaleway
ip01 = scaleway.loadbalancers.Ip("ip01")
lb01 = scaleway.loadbalancers.LoadBalancer("lb01",
ip_id=ip01.id,
name="test-lb",
type="lb-s")
bkd01 = scaleway.loadbalancers.Backend("bkd01",
lb_id=lb01.id,
forward_protocol="tcp",
forward_port=80,
proxy_protocol="none")
frt01 = scaleway.loadbalancers.Frontend("frt01",
lb_id=lb01.id,
backend_id=bkd01.id,
inbound_port=80)
by_id = scaleway.loadbalancers.get_frontend_output(frontend_id=frt01.id)
by_name = scaleway.loadbalancers.get_frontend_output(name=frt01.name,
lb_id=lb01.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 {
ip01, err := loadbalancers.NewIp(ctx, "ip01", nil)
if err != nil {
return err
}
lb01, err := loadbalancers.NewLoadBalancer(ctx, "lb01", &loadbalancers.LoadBalancerArgs{
IpId: ip01.ID(),
Name: pulumi.String("test-lb"),
Type: pulumi.String("lb-s"),
})
if err != nil {
return err
}
bkd01, err := loadbalancers.NewBackend(ctx, "bkd01", &loadbalancers.BackendArgs{
LbId: lb01.ID(),
ForwardProtocol: pulumi.String("tcp"),
ForwardPort: pulumi.Int(80),
ProxyProtocol: pulumi.String("none"),
})
if err != nil {
return err
}
frt01, err := loadbalancers.NewFrontend(ctx, "frt01", &loadbalancers.FrontendArgs{
LbId: lb01.ID(),
BackendId: bkd01.ID(),
InboundPort: pulumi.Int(80),
})
if err != nil {
return err
}
_ = loadbalancers.LookupFrontendOutput(ctx, loadbalancers.GetFrontendOutputArgs{
FrontendId: frt01.ID(),
}, nil)
_ = loadbalancers.LookupFrontendOutput(ctx, loadbalancers.GetFrontendOutputArgs{
Name: frt01.Name,
LbId: lb01.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 ip01 = new Scaleway.Loadbalancers.Ip("ip01");
var lb01 = new Scaleway.Loadbalancers.LoadBalancer("lb01", new()
{
IpId = ip01.Id,
Name = "test-lb",
Type = "lb-s",
});
var bkd01 = new Scaleway.Loadbalancers.Backend("bkd01", new()
{
LbId = lb01.Id,
ForwardProtocol = "tcp",
ForwardPort = 80,
ProxyProtocol = "none",
});
var frt01 = new Scaleway.Loadbalancers.Frontend("frt01", new()
{
LbId = lb01.Id,
BackendId = bkd01.Id,
InboundPort = 80,
});
var byID = Scaleway.Loadbalancers.GetFrontend.Invoke(new()
{
FrontendId = frt01.Id,
});
var byName = Scaleway.Loadbalancers.GetFrontend.Invoke(new()
{
Name = frt01.Name,
LbId = lb01.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.Frontend;
import com.pulumi.scaleway.loadbalancers.FrontendArgs;
import com.pulumi.scaleway.loadbalancers.LoadbalancersFunctions;
import com.pulumi.scaleway.loadbalancers.inputs.GetFrontendArgs;
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 ip01 = new Ip("ip01");
var lb01 = new LoadBalancer("lb01", LoadBalancerArgs.builder()
.ipId(ip01.id())
.name("test-lb")
.type("lb-s")
.build());
var bkd01 = new Backend("bkd01", BackendArgs.builder()
.lbId(lb01.id())
.forwardProtocol("tcp")
.forwardPort(80)
.proxyProtocol("none")
.build());
var frt01 = new Frontend("frt01", FrontendArgs.builder()
.lbId(lb01.id())
.backendId(bkd01.id())
.inboundPort(80)
.build());
final var byID = LoadbalancersFunctions.getFrontend(GetFrontendArgs.builder()
.frontendId(frt01.id())
.build());
final var byName = LoadbalancersFunctions.getFrontend(GetFrontendArgs.builder()
.name(frt01.name())
.lbId(lb01.id())
.build());
}
}
resources:
ip01:
type: scaleway:loadbalancers:Ip
lb01:
type: scaleway:loadbalancers:LoadBalancer
properties:
ipId: ${ip01.id}
name: test-lb
type: lb-s
bkd01:
type: scaleway:loadbalancers:Backend
properties:
lbId: ${lb01.id}
forwardProtocol: tcp
forwardPort: 80
proxyProtocol: none
frt01:
type: scaleway:loadbalancers:Frontend
properties:
lbId: ${lb01.id}
backendId: ${bkd01.id}
inboundPort: 80
variables:
byID:
fn::invoke:
function: scaleway:loadbalancers:getFrontend
arguments:
frontendId: ${frt01.id}
byName:
fn::invoke:
function: scaleway:loadbalancers:getFrontend
arguments:
name: ${frt01.name}
lbId: ${lb01.id}
Using getFrontend
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 getFrontend(args: GetFrontendArgs, opts?: InvokeOptions): Promise<GetFrontendResult>
function getFrontendOutput(args: GetFrontendOutputArgs, opts?: InvokeOptions): Output<GetFrontendResult>
def get_frontend(frontend_id: Optional[str] = None,
lb_id: Optional[str] = None,
name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetFrontendResult
def get_frontend_output(frontend_id: Optional[pulumi.Input[str]] = None,
lb_id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetFrontendResult]
func LookupFrontend(ctx *Context, args *LookupFrontendArgs, opts ...InvokeOption) (*LookupFrontendResult, error)
func LookupFrontendOutput(ctx *Context, args *LookupFrontendOutputArgs, opts ...InvokeOption) LookupFrontendResultOutput
> Note: This function is named LookupFrontend
in the Go SDK.
public static class GetFrontend
{
public static Task<GetFrontendResult> InvokeAsync(GetFrontendArgs args, InvokeOptions? opts = null)
public static Output<GetFrontendResult> Invoke(GetFrontendInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetFrontendResult> getFrontend(GetFrontendArgs args, InvokeOptions options)
public static Output<GetFrontendResult> getFrontend(GetFrontendArgs args, InvokeOptions options)
fn::invoke:
function: scaleway:loadbalancers/getFrontend:getFrontend
arguments:
# arguments dictionary
The following arguments are supported:
- Frontend
Id string - The frontend ID.
- Only one of
name
andfrontend_id
should be specified.
- Only one of
- Lb
Id string - The Load Balancer ID this frontend is attached to.
- Name string
- The name of the frontend.
- When using the
name
you should specify thelb-id
- When using the
- Frontend
Id string - The frontend ID.
- Only one of
name
andfrontend_id
should be specified.
- Only one of
- Lb
Id string - The Load Balancer ID this frontend is attached to.
- Name string
- The name of the frontend.
- When using the
name
you should specify thelb-id
- When using the
- frontend
Id String - The frontend ID.
- Only one of
name
andfrontend_id
should be specified.
- Only one of
- lb
Id String - The Load Balancer ID this frontend is attached to.
- name String
- The name of the frontend.
- When using the
name
you should specify thelb-id
- When using the
- frontend
Id string - The frontend ID.
- Only one of
name
andfrontend_id
should be specified.
- Only one of
- lb
Id string - The Load Balancer ID this frontend is attached to.
- name string
- The name of the frontend.
- When using the
name
you should specify thelb-id
- When using the
- frontend_
id str - The frontend ID.
- Only one of
name
andfrontend_id
should be specified.
- Only one of
- lb_
id str - The Load Balancer ID this frontend is attached to.
- name str
- The name of the frontend.
- When using the
name
you should specify thelb-id
- When using the
- frontend
Id String - The frontend ID.
- Only one of
name
andfrontend_id
should be specified.
- Only one of
- lb
Id String - The Load Balancer ID this frontend is attached to.
- name String
- The name of the frontend.
- When using the
name
you should specify thelb-id
- When using the
getFrontend Result
The following output properties are available:
- Acls
List<Pulumiverse.
Scaleway. Loadbalancers. Outputs. Get Frontend Acl> - Backend
Id string - Certificate
Id string - Certificate
Ids List<string> - Enable
Http3 bool - External
Acls bool - Id string
- The provider-assigned unique ID for this managed resource.
- Inbound
Port int - Timeout
Client string - Frontend
Id string - Lb
Id string - Name string
- Acls
[]Get
Frontend Acl - Backend
Id string - Certificate
Id string - Certificate
Ids []string - Enable
Http3 bool - External
Acls bool - Id string
- The provider-assigned unique ID for this managed resource.
- Inbound
Port int - Timeout
Client string - Frontend
Id string - Lb
Id string - Name string
- acls
List<Get
Frontend Acl> - backend
Id String - certificate
Id String - certificate
Ids List<String> - enable
Http3 Boolean - external
Acls Boolean - id String
- The provider-assigned unique ID for this managed resource.
- inbound
Port Integer - timeout
Client String - frontend
Id String - lb
Id String - name String
- acls
Get
Frontend Acl[] - backend
Id string - certificate
Id string - certificate
Ids string[] - enable
Http3 boolean - external
Acls boolean - id string
- The provider-assigned unique ID for this managed resource.
- inbound
Port number - timeout
Client string - frontend
Id string - lb
Id string - name string
- acls
Sequence[Get
Frontend Acl] - backend_
id str - certificate_
id str - certificate_
ids Sequence[str] - enable_
http3 bool - external_
acls bool - id str
- The provider-assigned unique ID for this managed resource.
- inbound_
port int - timeout_
client str - frontend_
id str - lb_
id str - name str
- acls List<Property Map>
- backend
Id String - certificate
Id String - certificate
Ids List<String> - enable
Http3 Boolean - external
Acls Boolean - id String
- The provider-assigned unique ID for this managed resource.
- inbound
Port Number - timeout
Client String - frontend
Id String - lb
Id String - name String
Supporting Types
GetFrontendAcl
- Actions
List<Pulumiverse.
Scaleway. Loadbalancers. Inputs. Get Frontend Acl Action> - Action to undertake when an ACL filter matches
- Created
At string - IsDate and time of ACL's creation (RFC 3339 format)
- Description string
- Description of the ACL
- Matches
List<Pulumiverse.
Scaleway. Loadbalancers. Inputs. Get Frontend Acl Match> - The ACL match rule
- Name string
- The name of the frontend.
- When using the
name
you should specify thelb-id
- When using the
- Updated
At string - IsDate and time of ACL's update (RFC 3339 format)
- Actions
[]Get
Frontend Acl Action - Action to undertake when an ACL filter matches
- Created
At string - IsDate and time of ACL's creation (RFC 3339 format)
- Description string
- Description of the ACL
- Matches
[]Get
Frontend Acl Match - The ACL match rule
- Name string
- The name of the frontend.
- When using the
name
you should specify thelb-id
- When using the
- Updated
At string - IsDate and time of ACL's update (RFC 3339 format)
- actions
List<Get
Frontend Acl Action> - Action to undertake when an ACL filter matches
- created
At String - IsDate and time of ACL's creation (RFC 3339 format)
- description String
- Description of the ACL
- matches
List<Get
Frontend Acl Match> - The ACL match rule
- name String
- The name of the frontend.
- When using the
name
you should specify thelb-id
- When using the
- updated
At String - IsDate and time of ACL's update (RFC 3339 format)
- actions
Get
Frontend Acl Action[] - Action to undertake when an ACL filter matches
- created
At string - IsDate and time of ACL's creation (RFC 3339 format)
- description string
- Description of the ACL
- matches
Get
Frontend Acl Match[] - The ACL match rule
- name string
- The name of the frontend.
- When using the
name
you should specify thelb-id
- When using the
- updated
At string - IsDate and time of ACL's update (RFC 3339 format)
- actions
Sequence[Get
Frontend Acl Action] - Action to undertake when an ACL filter matches
- created_
at str - IsDate and time of ACL's creation (RFC 3339 format)
- description str
- Description of the ACL
- matches
Sequence[Get
Frontend Acl Match] - The ACL match rule
- name str
- The name of the frontend.
- When using the
name
you should specify thelb-id
- When using the
- updated_
at str - IsDate and time of ACL's update (RFC 3339 format)
- actions List<Property Map>
- Action to undertake when an ACL filter matches
- created
At String - IsDate and time of ACL's creation (RFC 3339 format)
- description String
- Description of the ACL
- matches List<Property Map>
- The ACL match rule
- name String
- The name of the frontend.
- When using the
name
you should specify thelb-id
- When using the
- updated
At String - IsDate and time of ACL's update (RFC 3339 format)
GetFrontendAclAction
- Redirects
List<Pulumiverse.
Scaleway. Loadbalancers. Inputs. Get Frontend Acl Action Redirect> - Redirect parameters when using an ACL with
redirect
action - Type string
- The action type
- Redirects
[]Get
Frontend Acl Action Redirect - Redirect parameters when using an ACL with
redirect
action - Type string
- The action type
- redirects
List<Get
Frontend Acl Action Redirect> - Redirect parameters when using an ACL with
redirect
action - type String
- The action type
- redirects
Get
Frontend Acl Action Redirect[] - Redirect parameters when using an ACL with
redirect
action - type string
- The action type
- redirects
Sequence[Get
Frontend Acl Action Redirect] - Redirect parameters when using an ACL with
redirect
action - type str
- The action type
- redirects List<Property Map>
- Redirect parameters when using an ACL with
redirect
action - type String
- The action type
GetFrontendAclActionRedirect
GetFrontendAclMatch
- Http
Filter string - The HTTP filter to match
- Http
Filter stringOption - You can use this field with http_header_match acl type to set the header name to filter
- Http
Filter List<string>Values - A list of possible values to match for the given HTTP filter
- Invert bool
- If set to true, the condition will be of type "unless"
- Ip
Subnets List<string> - A list of IPs or CIDR v4/v6 addresses of the client of the session to match
- Http
Filter string - The HTTP filter to match
- Http
Filter stringOption - You can use this field with http_header_match acl type to set the header name to filter
- Http
Filter []stringValues - A list of possible values to match for the given HTTP filter
- Invert bool
- If set to true, the condition will be of type "unless"
- Ip
Subnets []string - A list of IPs or CIDR v4/v6 addresses of the client of the session to match
- http
Filter String - The HTTP filter to match
- http
Filter StringOption - You can use this field with http_header_match acl type to set the header name to filter
- http
Filter List<String>Values - A list of possible values to match for the given HTTP filter
- invert Boolean
- If set to true, the condition will be of type "unless"
- ip
Subnets List<String> - A list of IPs or CIDR v4/v6 addresses of the client of the session to match
- http
Filter string - The HTTP filter to match
- http
Filter stringOption - You can use this field with http_header_match acl type to set the header name to filter
- http
Filter string[]Values - A list of possible values to match for the given HTTP filter
- invert boolean
- If set to true, the condition will be of type "unless"
- ip
Subnets string[] - A list of IPs or CIDR v4/v6 addresses of the client of the session to match
- http_
filter str - The HTTP filter to match
- http_
filter_ stroption - You can use this field with http_header_match acl type to set the header name to filter
- http_
filter_ Sequence[str]values - A list of possible values to match for the given HTTP filter
- invert bool
- If set to true, the condition will be of type "unless"
- ip_
subnets Sequence[str] - A list of IPs or CIDR v4/v6 addresses of the client of the session to match
- http
Filter String - The HTTP filter to match
- http
Filter StringOption - You can use this field with http_header_match acl type to set the header name to filter
- http
Filter List<String>Values - A list of possible values to match for the given HTTP filter
- invert Boolean
- If set to true, the condition will be of type "unless"
- ip
Subnets List<String> - A list of IPs or CIDR v4/v6 addresses of the client of the session to match
Package Details
- Repository
- scaleway pulumiverse/pulumi-scaleway
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scaleway
Terraform Provider.