1. Packages
  2. AWS Classic
  3. API Docs
  4. autoscaling
  5. Attachment

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.13.0 published on Saturday, Dec 2, 2023 by Pulumi

aws.autoscaling.Attachment

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.13.0 published on Saturday, Dec 2, 2023 by Pulumi

    Attaches a load balancer to an Auto Scaling group.

    NOTE on Auto Scaling Groups, Attachments and Traffic Source Attachments: Pulumi provides standalone Attachment (for attaching Classic Load Balancers and Application Load Balancer, Gateway Load Balancer, or Network Load Balancer target groups) and Traffic Source Attachment (for attaching Load Balancers and VPC Lattice target groups) resources and an Auto Scaling Group resource with load_balancers, target_group_arns and traffic_source attributes. Do not use the same traffic source in more than one of these resources. Doing so will cause a conflict of attachments. A lifecycle configuration block can be used to suppress differences if necessary.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        // Create a new load balancer attachment
        var example = new Aws.AutoScaling.Attachment("example", new()
        {
            AutoscalingGroupName = aws_autoscaling_group.Example.Id,
            Elb = aws_elb.Example.Id,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/autoscaling"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := autoscaling.NewAttachment(ctx, "example", &autoscaling.AttachmentArgs{
    			AutoscalingGroupName: pulumi.Any(aws_autoscaling_group.Example.Id),
    			Elb:                  pulumi.Any(aws_elb.Example.Id),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.autoscaling.Attachment;
    import com.pulumi.aws.autoscaling.AttachmentArgs;
    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 example = new Attachment("example", AttachmentArgs.builder()        
                .autoscalingGroupName(aws_autoscaling_group.example().id())
                .elb(aws_elb.example().id())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_aws as aws
    
    # Create a new load balancer attachment
    example = aws.autoscaling.Attachment("example",
        autoscaling_group_name=aws_autoscaling_group["example"]["id"],
        elb=aws_elb["example"]["id"])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    // Create a new load balancer attachment
    const example = new aws.autoscaling.Attachment("example", {
        autoscalingGroupName: aws_autoscaling_group.example.id,
        elb: aws_elb.example.id,
    });
    
    resources:
      # Create a new load balancer attachment
      example:
        type: aws:autoscaling:Attachment
        properties:
          autoscalingGroupName: ${aws_autoscaling_group.example.id}
          elb: ${aws_elb.example.id}
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        // Create a new ALB Target Group attachment
        var example = new Aws.AutoScaling.Attachment("example", new()
        {
            AutoscalingGroupName = aws_autoscaling_group.Example.Id,
            LbTargetGroupArn = aws_lb_target_group.Example.Arn,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/autoscaling"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := autoscaling.NewAttachment(ctx, "example", &autoscaling.AttachmentArgs{
    			AutoscalingGroupName: pulumi.Any(aws_autoscaling_group.Example.Id),
    			LbTargetGroupArn:     pulumi.Any(aws_lb_target_group.Example.Arn),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.autoscaling.Attachment;
    import com.pulumi.aws.autoscaling.AttachmentArgs;
    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 example = new Attachment("example", AttachmentArgs.builder()        
                .autoscalingGroupName(aws_autoscaling_group.example().id())
                .lbTargetGroupArn(aws_lb_target_group.example().arn())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_aws as aws
    
    # Create a new ALB Target Group attachment
    example = aws.autoscaling.Attachment("example",
        autoscaling_group_name=aws_autoscaling_group["example"]["id"],
        lb_target_group_arn=aws_lb_target_group["example"]["arn"])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    // Create a new ALB Target Group attachment
    const example = new aws.autoscaling.Attachment("example", {
        autoscalingGroupName: aws_autoscaling_group.example.id,
        lbTargetGroupArn: aws_lb_target_group.example.arn,
    });
    
    resources:
      # Create a new ALB Target Group attachment
      example:
        type: aws:autoscaling:Attachment
        properties:
          autoscalingGroupName: ${aws_autoscaling_group.example.id}
          lbTargetGroupArn: ${aws_lb_target_group.example.arn}
    

    Create Attachment Resource

    new Attachment(name: string, args: AttachmentArgs, opts?: CustomResourceOptions);
    @overload
    def Attachment(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   autoscaling_group_name: Optional[str] = None,
                   elb: Optional[str] = None,
                   lb_target_group_arn: Optional[str] = None)
    @overload
    def Attachment(resource_name: str,
                   args: AttachmentArgs,
                   opts: Optional[ResourceOptions] = None)
    func NewAttachment(ctx *Context, name string, args AttachmentArgs, opts ...ResourceOption) (*Attachment, error)
    public Attachment(string name, AttachmentArgs args, CustomResourceOptions? opts = null)
    public Attachment(String name, AttachmentArgs args)
    public Attachment(String name, AttachmentArgs args, CustomResourceOptions options)
    
    type: aws:autoscaling:Attachment
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args AttachmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AttachmentArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AttachmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AttachmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AttachmentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Attachment Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Attachment resource accepts the following input properties:

    AutoscalingGroupName string

    Name of ASG to associate with the ELB.

    Elb string

    Name of the ELB.

    LbTargetGroupArn string

    ARN of a load balancer target group.

    AutoscalingGroupName string

    Name of ASG to associate with the ELB.

    Elb string

    Name of the ELB.

    LbTargetGroupArn string

    ARN of a load balancer target group.

    autoscalingGroupName String

    Name of ASG to associate with the ELB.

    elb String

    Name of the ELB.

    lbTargetGroupArn String

    ARN of a load balancer target group.

    autoscalingGroupName string

    Name of ASG to associate with the ELB.

    elb string

    Name of the ELB.

    lbTargetGroupArn string

    ARN of a load balancer target group.

    autoscaling_group_name str

    Name of ASG to associate with the ELB.

    elb str

    Name of the ELB.

    lb_target_group_arn str

    ARN of a load balancer target group.

    autoscalingGroupName String

    Name of ASG to associate with the ELB.

    elb String

    Name of the ELB.

    lbTargetGroupArn String

    ARN of a load balancer target group.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Attachment resource produces the following output properties:

    Id string

    The provider-assigned unique ID for this managed resource.

    Id string

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    id string

    The provider-assigned unique ID for this managed resource.

    id str

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    Look up Existing Attachment Resource

    Get an existing Attachment resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AttachmentState, opts?: CustomResourceOptions): Attachment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            autoscaling_group_name: Optional[str] = None,
            elb: Optional[str] = None,
            lb_target_group_arn: Optional[str] = None) -> Attachment
    func GetAttachment(ctx *Context, name string, id IDInput, state *AttachmentState, opts ...ResourceOption) (*Attachment, error)
    public static Attachment Get(string name, Input<string> id, AttachmentState? state, CustomResourceOptions? opts = null)
    public static Attachment get(String name, Output<String> id, AttachmentState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AutoscalingGroupName string

    Name of ASG to associate with the ELB.

    Elb string

    Name of the ELB.

    LbTargetGroupArn string

    ARN of a load balancer target group.

    AutoscalingGroupName string

    Name of ASG to associate with the ELB.

    Elb string

    Name of the ELB.

    LbTargetGroupArn string

    ARN of a load balancer target group.

    autoscalingGroupName String

    Name of ASG to associate with the ELB.

    elb String

    Name of the ELB.

    lbTargetGroupArn String

    ARN of a load balancer target group.

    autoscalingGroupName string

    Name of ASG to associate with the ELB.

    elb string

    Name of the ELB.

    lbTargetGroupArn string

    ARN of a load balancer target group.

    autoscaling_group_name str

    Name of ASG to associate with the ELB.

    elb str

    Name of the ELB.

    lb_target_group_arn str

    ARN of a load balancer target group.

    autoscalingGroupName String

    Name of ASG to associate with the ELB.

    elb String

    Name of the ELB.

    lbTargetGroupArn String

    ARN of a load balancer target group.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the aws Terraform Provider.

    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.13.0 published on Saturday, Dec 2, 2023 by Pulumi