civo 1.1.5 published on Thursday, Feb 6, 2025 by civo
civo.getLoadbalancer
Explore with Pulumi AI
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<Get
Loadbalancer Backend> - Cluster
Id string - The cluster id of the load balancer
- Enable
Proxy stringProtocol - The enabled proxy protocol of the load balancer
- External
Traffic stringPolicy - The external traffic policy of the load balancer
- Firewall
Id string - The firewall id of the load balancer
- Private
Ip string - The private ip of the load balancer
- Public
Ip string - The public ip of the load balancer
- Session
Affinity string - The session affinity of the load balancer
- Session
Affinity doubleConfig Timeout - 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
[]Get
Loadbalancer Backend - Cluster
Id string - The cluster id of the load balancer
- Enable
Proxy stringProtocol - The enabled proxy protocol of the load balancer
- External
Traffic stringPolicy - The external traffic policy of the load balancer
- Firewall
Id string - The firewall id of the load balancer
- Private
Ip string - The private ip of the load balancer
- Public
Ip string - The public ip of the load balancer
- Session
Affinity string - The session affinity of the load balancer
- Session
Affinity float64Config Timeout - 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<Get
Loadbalancer Backend> - cluster
Id String - The cluster id of the load balancer
- enable
Proxy StringProtocol - The enabled proxy protocol of the load balancer
- external
Traffic StringPolicy - The external traffic policy of the load balancer
- firewall
Id String - The firewall id of the load balancer
- private
Ip String - The private ip of the load balancer
- public
Ip String - The public ip of the load balancer
- session
Affinity String - The session affinity of the load balancer
- session
Affinity DoubleConfig Timeout - 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
Get
Loadbalancer Backend[] - cluster
Id string - The cluster id of the load balancer
- enable
Proxy stringProtocol - The enabled proxy protocol of the load balancer
- external
Traffic stringPolicy - The external traffic policy of the load balancer
- firewall
Id string - The firewall id of the load balancer
- private
Ip string - The private ip of the load balancer
- public
Ip string - The public ip of the load balancer
- session
Affinity string - The session affinity of the load balancer
- session
Affinity numberConfig Timeout - 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[Get
Loadbalancer Backend] - cluster_
id str - The cluster id of the load balancer
- enable_
proxy_ strprotocol - The enabled proxy protocol of the load balancer
- external_
traffic_ strpolicy - 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_ floatconfig_ timeout - 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>
- cluster
Id String - The cluster id of the load balancer
- enable
Proxy StringProtocol - The enabled proxy protocol of the load balancer
- external
Traffic StringPolicy - The external traffic policy of the load balancer
- firewall
Id String - The firewall id of the load balancer
- private
Ip String - The private ip of the load balancer
- public
Ip String - The public ip of the load balancer
- session
Affinity String - The session affinity of the load balancer
- session
Affinity NumberConfig Timeout - 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
- Health
Check doublePort - Ip string
- Protocol string
- Source
Port double - Target
Port double
- Health
Check float64Port - Ip string
- Protocol string
- Source
Port float64 - Target
Port float64
- health
Check DoublePort - ip String
- protocol String
- source
Port Double - target
Port Double
- health
Check numberPort - ip string
- protocol string
- source
Port number - target
Port number
- health_
check_ floatport - ip str
- protocol str
- source_
port float - target_
port float
- health
Check NumberPort - ip String
- protocol String
- source
Port Number - target
Port Number
Package Details
- Repository
- Civo civo/terraform-provider-civo
- License
- Notes
- This Pulumi package is based on the
civo
Terraform Provider.