Show / Hide Table of Contents

Class GetLoadBalancer

Inheritance
System.Object
GetLoadBalancer
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.ApplicationLoadBalancing
Assembly: Pulumi.Aws.dll
Syntax
[Obsolete("aws.applicationloadbalancing.getLoadBalancer has been deprecated in favor of aws.alb.getLoadBalancer")]
public static class GetLoadBalancer

Methods

View Source

InvokeAsync(GetLoadBalancerArgs, InvokeOptions)

Note: aws.alb.LoadBalancer is known as aws.lb.LoadBalancer. The functionality is identical.

Provides information about a Load Balancer.

This data source can prove useful when a module accepts an LB as an input variable and needs to, for example, determine the security groups associated with it, etc.

{{% examples %}}

Example Usage

{{% example %}}

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var config = new Config();
    var lbArn = config.Get("lbArn") ?? "";
    var lbName = config.Get("lbName") ?? "";
    var test = Output.Create(Aws.LB.GetLoadBalancer.InvokeAsync(new Aws.LB.GetLoadBalancerArgs
    {
        Arn = lbArn,
        Name = lbName,
    }));
}

}

{{% /example %}} {{% /examples %}}

Declaration
public static Task<GetLoadBalancerResult> InvokeAsync(GetLoadBalancerArgs args = null, InvokeOptions options = null)
Parameters
Type Name Description
GetLoadBalancerArgs args
InvokeOptions options
Returns
Type Description
System.Threading.Tasks.Task<GetLoadBalancerResult>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.