1. Packages
  2. Civo Provider
  3. API Docs
  4. getLoadbalancer
civo 1.1.5 published on Thursday, Feb 6, 2025 by civo

civo.getLoadbalancer

Explore with Pulumi AI

civo logo
civo 1.1.5 published on Thursday, Feb 6, 2025 by civo

    Get information on a load balancer for use in other resources. This data source provides all of the load balancers properties as configured on your Civo account.

    An error will be raised if the provided load balancer name does not exist in your Civo account.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as civo from "@pulumi/civo";
    
    const my-lb = civo.getLoadbalancer({
        name: "lb-name",
        region: "LON1",
    });
    export const civoLoadbalancerOutput = my_lb.then(my_lb => my_lb.publicIp);
    
    import pulumi
    import pulumi_civo as civo
    
    my_lb = civo.get_loadbalancer(name="lb-name",
        region="LON1")
    pulumi.export("civoLoadbalancerOutput", my_lb.public_ip)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/civo/civo"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		my_lb, err := civo.GetLoadbalancer(ctx, &civo.GetLoadbalancerArgs{
    			Name:   pulumi.StringRef("lb-name"),
    			Region: pulumi.StringRef("LON1"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("civoLoadbalancerOutput", my_lb.PublicIp)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Civo = Pulumi.Civo;
    
    return await Deployment.RunAsync(() => 
    {
        var my_lb = Civo.GetLoadbalancer.Invoke(new()
        {
            Name = "lb-name",
            Region = "LON1",
        });
    
        return new Dictionary<string, object?>
        {
            ["civoLoadbalancerOutput"] = my_lb.Apply(my_lb => my_lb.Apply(getLoadbalancerResult => getLoadbalancerResult.PublicIp)),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.civo.CivoFunctions;
    import com.pulumi.civo.inputs.GetLoadbalancerArgs;
    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 my-lb = CivoFunctions.getLoadbalancer(GetLoadbalancerArgs.builder()
                .name("lb-name")
                .region("LON1")
                .build());
    
            ctx.export("civoLoadbalancerOutput", my_lb.publicIp());
        }
    }
    
    variables:
      my-lb:
        fn::invoke:
          function: civo:getLoadbalancer
          arguments:
            name: lb-name
            region: LON1
    outputs:
      civoLoadbalancerOutput: ${["my-lb"].publicIp}
    

    Using getLoadbalancer

    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 getLoadbalancer(args: GetLoadbalancerArgs, opts?: InvokeOptions): Promise<GetLoadbalancerResult>
    function getLoadbalancerOutput(args: GetLoadbalancerOutputArgs, opts?: InvokeOptions): Output<GetLoadbalancerResult>
    def get_loadbalancer(id: Optional[str] = None,
                         name: Optional[str] = None,
                         region: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetLoadbalancerResult
    def get_loadbalancer_output(id: Optional[pulumi.Input[str]] = None,
                         name: Optional[pulumi.Input[str]] = None,
                         region: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetLoadbalancerResult]
    func GetLoadbalancer(ctx *Context, args *GetLoadbalancerArgs, opts ...InvokeOption) (*GetLoadbalancerResult, error)
    func GetLoadbalancerOutput(ctx *Context, args *GetLoadbalancerOutputArgs, opts ...InvokeOption) GetLoadbalancerResultOutput

    > Note: This function is named GetLoadbalancer in the Go SDK.

    public static class GetLoadbalancer 
    {
        public static Task<GetLoadbalancerResult> InvokeAsync(GetLoadbalancerArgs args, InvokeOptions? opts = null)
        public static Output<GetLoadbalancerResult> Invoke(GetLoadbalancerInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetLoadbalancerResult> getLoadbalancer(GetLoadbalancerArgs args, InvokeOptions options)
    public static Output<GetLoadbalancerResult> getLoadbalancer(GetLoadbalancerArgs args, InvokeOptions options)
    
    fn::invoke:
      function: civo:index/getLoadbalancer:getLoadbalancer
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    The id of the load balancer to retrieve (You can find this id from service annotations 'kubernetes.civo.com/loadbalancer-id')
    Name string
    The name of the load balancer (You can find this name from service annotations 'kubernetes.civo.com/loadbalancer-name')
    Region string
    The region of the load balancer, if you declare this field, the datasource will use this value instead of the one defined in the provider
    Id string
    The id of the load balancer to retrieve (You can find this id from service annotations 'kubernetes.civo.com/loadbalancer-id')
    Name string
    The name of the load balancer (You can find this name from service annotations 'kubernetes.civo.com/loadbalancer-name')
    Region string
    The region of the load balancer, if you declare this field, the datasource will use this value instead of the one defined in the provider
    id String
    The id of the load balancer to retrieve (You can find this id from service annotations 'kubernetes.civo.com/loadbalancer-id')
    name String
    The name of the load balancer (You can find this name from service annotations 'kubernetes.civo.com/loadbalancer-name')
    region String
    The region of the load balancer, if you declare this field, the datasource will use this value instead of the one defined in the provider
    id string
    The id of the load balancer to retrieve (You can find this id from service annotations 'kubernetes.civo.com/loadbalancer-id')
    name string
    The name of the load balancer (You can find this name from service annotations 'kubernetes.civo.com/loadbalancer-name')
    region string
    The region of the load balancer, if you declare this field, the datasource will use this value instead of the one defined in the provider
    id str
    The id of the load balancer to retrieve (You can find this id from service annotations 'kubernetes.civo.com/loadbalancer-id')
    name str
    The name of the load balancer (You can find this name from service annotations 'kubernetes.civo.com/loadbalancer-name')
    region str
    The region of the load balancer, if you declare this field, the datasource will use this value instead of the one defined in the provider
    id String
    The id of the load balancer to retrieve (You can find this id from service annotations 'kubernetes.civo.com/loadbalancer-id')
    name String
    The name of the load balancer (You can find this name from service annotations 'kubernetes.civo.com/loadbalancer-name')
    region String
    The region of the load balancer, if you declare this field, the datasource will use this value instead of the one defined in the provider

    getLoadbalancer Result

    The following output properties are available:

    Algorithm string
    The algorithm used by the load balancer
    Backends List<GetLoadbalancerBackend>
    ClusterId string
    The cluster id of the load balancer
    EnableProxyProtocol string
    The enabled proxy protocol of the load balancer
    ExternalTrafficPolicy string
    The external traffic policy of the load balancer
    FirewallId string
    The firewall id of the load balancer
    PrivateIp string
    The private ip of the load balancer
    PublicIp string
    The public ip of the load balancer
    SessionAffinity string
    The session affinity of the load balancer
    SessionAffinityConfigTimeout double
    The session affinity config timeout of the load balancer
    State string
    The state of the load balancer
    Id string
    The id of the load balancer to retrieve (You can find this id from service annotations 'kubernetes.civo.com/loadbalancer-id')
    Name string
    The name of the load balancer (You can find this name from service annotations 'kubernetes.civo.com/loadbalancer-name')
    Region string
    The region of the load balancer, if you declare this field, the datasource will use this value instead of the one defined in the provider
    Algorithm string
    The algorithm used by the load balancer
    Backends []GetLoadbalancerBackend
    ClusterId string
    The cluster id of the load balancer
    EnableProxyProtocol string
    The enabled proxy protocol of the load balancer
    ExternalTrafficPolicy string
    The external traffic policy of the load balancer
    FirewallId string
    The firewall id of the load balancer
    PrivateIp string
    The private ip of the load balancer
    PublicIp string
    The public ip of the load balancer
    SessionAffinity string
    The session affinity of the load balancer
    SessionAffinityConfigTimeout float64
    The session affinity config timeout of the load balancer
    State string
    The state of the load balancer
    Id string
    The id of the load balancer to retrieve (You can find this id from service annotations 'kubernetes.civo.com/loadbalancer-id')
    Name string
    The name of the load balancer (You can find this name from service annotations 'kubernetes.civo.com/loadbalancer-name')
    Region string
    The region of the load balancer, if you declare this field, the datasource will use this value instead of the one defined in the provider
    algorithm String
    The algorithm used by the load balancer
    backends List<GetLoadbalancerBackend>
    clusterId String
    The cluster id of the load balancer
    enableProxyProtocol String
    The enabled proxy protocol of the load balancer
    externalTrafficPolicy String
    The external traffic policy of the load balancer
    firewallId String
    The firewall id of the load balancer
    privateIp String
    The private ip of the load balancer
    publicIp String
    The public ip of the load balancer
    sessionAffinity String
    The session affinity of the load balancer
    sessionAffinityConfigTimeout Double
    The session affinity config timeout of the load balancer
    state String
    The state of the load balancer
    id String
    The id of the load balancer to retrieve (You can find this id from service annotations 'kubernetes.civo.com/loadbalancer-id')
    name String
    The name of the load balancer (You can find this name from service annotations 'kubernetes.civo.com/loadbalancer-name')
    region String
    The region of the load balancer, if you declare this field, the datasource will use this value instead of the one defined in the provider
    algorithm string
    The algorithm used by the load balancer
    backends GetLoadbalancerBackend[]
    clusterId string
    The cluster id of the load balancer
    enableProxyProtocol string
    The enabled proxy protocol of the load balancer
    externalTrafficPolicy string
    The external traffic policy of the load balancer
    firewallId string
    The firewall id of the load balancer
    privateIp string
    The private ip of the load balancer
    publicIp string
    The public ip of the load balancer
    sessionAffinity string
    The session affinity of the load balancer
    sessionAffinityConfigTimeout number
    The session affinity config timeout of the load balancer
    state string
    The state of the load balancer
    id string
    The id of the load balancer to retrieve (You can find this id from service annotations 'kubernetes.civo.com/loadbalancer-id')
    name string
    The name of the load balancer (You can find this name from service annotations 'kubernetes.civo.com/loadbalancer-name')
    region string
    The region of the load balancer, if you declare this field, the datasource will use this value instead of the one defined in the provider
    algorithm str
    The algorithm used by the load balancer
    backends Sequence[GetLoadbalancerBackend]
    cluster_id str
    The cluster id of the load balancer
    enable_proxy_protocol str
    The enabled proxy protocol of the load balancer
    external_traffic_policy str
    The external traffic policy of the load balancer
    firewall_id str
    The firewall id of the load balancer
    private_ip str
    The private ip of the load balancer
    public_ip str
    The public ip of the load balancer
    session_affinity str
    The session affinity of the load balancer
    session_affinity_config_timeout float
    The session affinity config timeout of the load balancer
    state str
    The state of the load balancer
    id str
    The id of the load balancer to retrieve (You can find this id from service annotations 'kubernetes.civo.com/loadbalancer-id')
    name str
    The name of the load balancer (You can find this name from service annotations 'kubernetes.civo.com/loadbalancer-name')
    region str
    The region of the load balancer, if you declare this field, the datasource will use this value instead of the one defined in the provider
    algorithm String
    The algorithm used by the load balancer
    backends List<Property Map>
    clusterId String
    The cluster id of the load balancer
    enableProxyProtocol String
    The enabled proxy protocol of the load balancer
    externalTrafficPolicy String
    The external traffic policy of the load balancer
    firewallId String
    The firewall id of the load balancer
    privateIp String
    The private ip of the load balancer
    publicIp String
    The public ip of the load balancer
    sessionAffinity String
    The session affinity of the load balancer
    sessionAffinityConfigTimeout Number
    The session affinity config timeout of the load balancer
    state String
    The state of the load balancer
    id String
    The id of the load balancer to retrieve (You can find this id from service annotations 'kubernetes.civo.com/loadbalancer-id')
    name String
    The name of the load balancer (You can find this name from service annotations 'kubernetes.civo.com/loadbalancer-name')
    region String
    The region of the load balancer, if you declare this field, the datasource will use this value instead of the one defined in the provider

    Supporting Types

    GetLoadbalancerBackend

    HealthCheckPort double
    Ip string
    Protocol string
    SourcePort double
    TargetPort double
    HealthCheckPort float64
    Ip string
    Protocol string
    SourcePort float64
    TargetPort float64
    healthCheckPort Double
    ip String
    protocol String
    sourcePort Double
    targetPort Double
    healthCheckPort number
    ip string
    protocol string
    sourcePort number
    targetPort number
    healthCheckPort Number
    ip String
    protocol String
    sourcePort Number
    targetPort Number

    Package Details

    Repository
    Civo civo/terraform-provider-civo
    License
    Notes
    This Pulumi package is based on the civo Terraform Provider.
    civo logo
    civo 1.1.5 published on Thursday, Feb 6, 2025 by civo