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.32.0 published on Friday, Apr 19, 2024 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.32.0 published on Friday, Apr 19, 2024 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

    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: exampleAwsAutoscalingGroup.id,
        elb: exampleAwsElb.id,
    });
    
    import pulumi
    import pulumi_aws as aws
    
    # Create a new load balancer attachment
    example = aws.autoscaling.Attachment("example",
        autoscaling_group_name=example_aws_autoscaling_group["id"],
        elb=example_aws_elb["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 {
    		// Create a new load balancer attachment
    		_, err := autoscaling.NewAttachment(ctx, "example", &autoscaling.AttachmentArgs{
    			AutoscalingGroupName: pulumi.Any(exampleAwsAutoscalingGroup.Id),
    			Elb:                  pulumi.Any(exampleAwsElb.Id),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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 = exampleAwsAutoscalingGroup.Id,
            Elb = exampleAwsElb.Id,
        });
    
    });
    
    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) {
            // Create a new load balancer attachment
            var example = new Attachment("example", AttachmentArgs.builder()        
                .autoscalingGroupName(exampleAwsAutoscalingGroup.id())
                .elb(exampleAwsElb.id())
                .build());
    
        }
    }
    
    resources:
      # Create a new load balancer attachment
      example:
        type: aws:autoscaling:Attachment
        properties:
          autoscalingGroupName: ${exampleAwsAutoscalingGroup.id}
          elb: ${exampleAwsElb.id}
    
    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: exampleAwsAutoscalingGroup.id,
        lbTargetGroupArn: exampleAwsLbTargetGroup.arn,
    });
    
    import pulumi
    import pulumi_aws as aws
    
    # Create a new ALB Target Group attachment
    example = aws.autoscaling.Attachment("example",
        autoscaling_group_name=example_aws_autoscaling_group["id"],
        lb_target_group_arn=example_aws_lb_target_group["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 {
    		// Create a new ALB Target Group attachment
    		_, err := autoscaling.NewAttachment(ctx, "example", &autoscaling.AttachmentArgs{
    			AutoscalingGroupName: pulumi.Any(exampleAwsAutoscalingGroup.Id),
    			LbTargetGroupArn:     pulumi.Any(exampleAwsLbTargetGroup.Arn),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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 = exampleAwsAutoscalingGroup.Id,
            LbTargetGroupArn = exampleAwsLbTargetGroup.Arn,
        });
    
    });
    
    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) {
            // Create a new ALB Target Group attachment
            var example = new Attachment("example", AttachmentArgs.builder()        
                .autoscalingGroupName(exampleAwsAutoscalingGroup.id())
                .lbTargetGroupArn(exampleAwsLbTargetGroup.arn())
                .build());
    
        }
    }
    
    resources:
      # Create a new ALB Target Group attachment
      example:
        type: aws:autoscaling:Attachment
        properties:
          autoscalingGroupName: ${exampleAwsAutoscalingGroup.id}
          lbTargetGroupArn: ${exampleAwsLbTargetGroup.arn}
    

    Create Attachment Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Attachment(name: string, args: AttachmentArgs, opts?: CustomResourceOptions);
    @overload
    def Attachment(resource_name: str,
                   args: AttachmentArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @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)
    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.
    
    

    Parameters

    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.

    Example

    The following reference example uses placeholder values for all input properties.

    var attachmentResource = new Aws.AutoScaling.Attachment("attachmentResource", new()
    {
        AutoscalingGroupName = "string",
        Elb = "string",
        LbTargetGroupArn = "string",
    });
    
    example, err := autoscaling.NewAttachment(ctx, "attachmentResource", &autoscaling.AttachmentArgs{
    	AutoscalingGroupName: pulumi.String("string"),
    	Elb:                  pulumi.String("string"),
    	LbTargetGroupArn:     pulumi.String("string"),
    })
    
    var attachmentResource = new Attachment("attachmentResource", AttachmentArgs.builder()        
        .autoscalingGroupName("string")
        .elb("string")
        .lbTargetGroupArn("string")
        .build());
    
    attachment_resource = aws.autoscaling.Attachment("attachmentResource",
        autoscaling_group_name="string",
        elb="string",
        lb_target_group_arn="string")
    
    const attachmentResource = new aws.autoscaling.Attachment("attachmentResource", {
        autoscalingGroupName: "string",
        elb: "string",
        lbTargetGroupArn: "string",
    });
    
    type: aws:autoscaling:Attachment
    properties:
        autoscalingGroupName: string
        elb: string
        lbTargetGroupArn: string
    

    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.32.0 published on Friday, Apr 19, 2024 by Pulumi