published on Tuesday, Mar 10, 2026 by Pulumi
published on Tuesday, Mar 10, 2026 by Pulumi
Provides an Auto Scaling Attachment resource.
NOTE on Auto Scaling Groups and ASG Attachments: This provider currently provides both a standalone
aws.autoscaling.Attachmentresource (describing an ASG attached to an ELB or ALB), and anaws.autoscaling.Groupwithload_balancersandtarget_group_arnsdefined in-line. These two methods are not mutually-exclusive. Ifaws.autoscaling.Attachmentresources are used, either alone or with inlineload_balancersortarget_group_arns, theaws.autoscaling.Groupresource must be configured to ignore changes to theload_balancersandtarget_group_arnsarguments.
With An AutoScaling Group Resource
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
// ... other configuration ...
const asg = new aws.autoscaling.Group("asg", {});
const asgAttachmentBar = new aws.autoscaling.Attachment("asgAttachmentBar", {
autoscalingGroupName: asg.id,
elb: aws_elb.test.id,
});
import pulumi
import pulumi_aws as aws
# ... other configuration ...
asg = aws.autoscaling.Group("asg")
asg_attachment_bar = aws.autoscaling.Attachment("asgAttachmentBar",
autoscaling_group_name=asg.id,
elb=aws_elb["test"]["id"])
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
// ... other configuration ...
var asg = new Aws.AutoScaling.Group("asg");
var asgAttachmentBar = new Aws.AutoScaling.Attachment("asgAttachmentBar", new()
{
AutoscalingGroupName = asg.Id,
Elb = aws_elb.Test.Id,
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/autoscaling"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
asg, err := autoscaling.NewGroup(ctx, "asg", nil)
if err != nil {
return err
}
_, err = autoscaling.NewAttachment(ctx, "asgAttachmentBar", &autoscaling.AttachmentArgs{
AutoscalingGroupName: asg.ID(),
Elb: pulumi.Any(aws_elb.Test.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.Group;
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 asg = new Group("asg");
var asgAttachmentBar = new Attachment("asgAttachmentBar", AttachmentArgs.builder()
.autoscalingGroupName(asg.id())
.elb(aws_elb.test().id())
.build());
}
}
resources:
asg:
type: aws:autoscaling:Group
asgAttachmentBar:
type: aws:autoscaling:Attachment
properties:
autoscalingGroupName: ${asg.id}
elb: ${aws_elb.test.id}
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 asgAttachmentBar = new Aws.AutoScaling.Attachment("asgAttachmentBar", new()
{
AutoscalingGroupName = aws_autoscaling_group.Asg.Id,
Elb = aws_elb.Bar.Id,
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/autoscaling"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := autoscaling.NewAttachment(ctx, "asgAttachmentBar", &autoscaling.AttachmentArgs{
AutoscalingGroupName: pulumi.Any(aws_autoscaling_group.Asg.Id),
Elb: pulumi.Any(aws_elb.Bar.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 asgAttachmentBar = new Attachment("asgAttachmentBar", AttachmentArgs.builder()
.autoscalingGroupName(aws_autoscaling_group.asg().id())
.elb(aws_elb.bar().id())
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
// Create a new load balancer attachment
const asgAttachmentBar = new aws.autoscaling.Attachment("asgAttachmentBar", {
autoscalingGroupName: aws_autoscaling_group.asg.id,
elb: aws_elb.bar.id,
});
import pulumi
import pulumi_aws as aws
# Create a new load balancer attachment
asg_attachment_bar = aws.autoscaling.Attachment("asgAttachmentBar",
autoscaling_group_name=aws_autoscaling_group["asg"]["id"],
elb=aws_elb["bar"]["id"])
resources:
# Create a new load balancer attachment
asgAttachmentBar:
type: aws:autoscaling:Attachment
properties:
autoscalingGroupName: ${aws_autoscaling_group.asg.id}
elb: ${aws_elb.bar.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 asgAttachmentBar = new Aws.AutoScaling.Attachment("asgAttachmentBar", new()
{
AutoscalingGroupName = aws_autoscaling_group.Asg.Id,
LbTargetGroupArn = aws_lb_target_group.Test.Arn,
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/autoscaling"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := autoscaling.NewAttachment(ctx, "asgAttachmentBar", &autoscaling.AttachmentArgs{
AutoscalingGroupName: pulumi.Any(aws_autoscaling_group.Asg.Id),
LbTargetGroupArn: pulumi.Any(aws_lb_target_group.Test.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 asgAttachmentBar = new Attachment("asgAttachmentBar", AttachmentArgs.builder()
.autoscalingGroupName(aws_autoscaling_group.asg().id())
.lbTargetGroupArn(aws_lb_target_group.test().arn())
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
// Create a new ALB Target Group attachment
const asgAttachmentBar = new aws.autoscaling.Attachment("asgAttachmentBar", {
autoscalingGroupName: aws_autoscaling_group.asg.id,
lbTargetGroupArn: aws_lb_target_group.test.arn,
});
import pulumi
import pulumi_aws as aws
# Create a new ALB Target Group attachment
asg_attachment_bar = aws.autoscaling.Attachment("asgAttachmentBar",
autoscaling_group_name=aws_autoscaling_group["asg"]["id"],
lb_target_group_arn=aws_lb_target_group["test"]["arn"])
resources:
# Create a new ALB Target Group attachment
asgAttachmentBar:
type: aws:autoscaling:Attachment
properties:
autoscalingGroupName: ${aws_autoscaling_group.asg.id}
lbTargetGroupArn: ${aws_lb_target_group.test.arn}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
// ... other configuration ...
var asg = new Aws.AutoScaling.Group("asg");
var asgAttachmentBar = new Aws.AutoScaling.Attachment("asgAttachmentBar", new()
{
AutoscalingGroupName = asg.Id,
Elb = aws_elb.Test.Id,
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/autoscaling"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
asg, err := autoscaling.NewGroup(ctx, "asg", nil)
if err != nil {
return err
}
_, err = autoscaling.NewAttachment(ctx, "asgAttachmentBar", &autoscaling.AttachmentArgs{
AutoscalingGroupName: asg.ID(),
Elb: pulumi.Any(aws_elb.Test.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.Group;
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 asg = new Group("asg");
var asgAttachmentBar = new Attachment("asgAttachmentBar", AttachmentArgs.builder()
.autoscalingGroupName(asg.id())
.elb(aws_elb.test().id())
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
// ... other configuration ...
const asg = new aws.autoscaling.Group("asg", {});
const asgAttachmentBar = new aws.autoscaling.Attachment("asgAttachmentBar", {
autoscalingGroupName: asg.id,
elb: aws_elb.test.id,
});
import pulumi
import pulumi_aws as aws
# ... other configuration ...
asg = aws.autoscaling.Group("asg")
asg_attachment_bar = aws.autoscaling.Attachment("asgAttachmentBar",
autoscaling_group_name=asg.id,
elb=aws_elb["test"]["id"])
resources:
asg:
type: aws:autoscaling:Group
asgAttachmentBar:
type: aws:autoscaling:Attachment
properties:
autoscalingGroupName: ${asg.id}
elb: ${aws_elb.test.id}
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,
alb_target_group_arn: 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.
Constructor 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 com.pulumi.aws.autoscaling.Attachment("attachmentResource", com.pulumi.aws.autoscaling.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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Attachment resource accepts the following input properties:
- Autoscaling
Group stringName - Name of ASG to associate with the ELB.
- Alb
Target stringGroup Arn - ARN of an ALB Target Group.
- Elb string
- Name of the ELB.
- Lb
Target stringGroup Arn - ARN of a load balancer target group.
- Autoscaling
Group stringName - Name of ASG to associate with the ELB.
- Alb
Target stringGroup Arn - ARN of an ALB Target Group.
- Elb string
- Name of the ELB.
- Lb
Target stringGroup Arn - ARN of a load balancer target group.
- autoscaling
Group StringName - Name of ASG to associate with the ELB.
- alb
Target StringGroup Arn - ARN of an ALB Target Group.
- elb String
- Name of the ELB.
- lb
Target StringGroup Arn - ARN of a load balancer target group.
- autoscaling
Group stringName - Name of ASG to associate with the ELB.
- alb
Target stringGroup Arn - ARN of an ALB Target Group.
- elb string
- Name of the ELB.
- lb
Target stringGroup Arn - ARN of a load balancer target group.
- autoscaling_
group_ strname - Name of ASG to associate with the ELB.
- alb_
target_ strgroup_ arn - ARN of an ALB Target Group.
- elb str
- Name of the ELB.
- lb_
target_ strgroup_ arn - ARN of a load balancer target group.
- autoscaling
Group StringName - Name of ASG to associate with the ELB.
- alb
Target StringGroup Arn - ARN of an ALB Target Group.
- elb String
- Name of the ELB.
- lb
Target StringGroup Arn - 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,
alb_target_group_arn: Optional[str] = None,
autoscaling_group_name: Optional[str] = None,
elb: Optional[str] = None,
lb_target_group_arn: Optional[str] = None) -> Attachmentfunc 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)resources: _: type: aws:autoscaling:Attachment get: id: ${id}- 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.
- Alb
Target stringGroup Arn - ARN of an ALB Target Group.
- Autoscaling
Group stringName - Name of ASG to associate with the ELB.
- Elb string
- Name of the ELB.
- Lb
Target stringGroup Arn - ARN of a load balancer target group.
- Alb
Target stringGroup Arn - ARN of an ALB Target Group.
- Autoscaling
Group stringName - Name of ASG to associate with the ELB.
- Elb string
- Name of the ELB.
- Lb
Target stringGroup Arn - ARN of a load balancer target group.
- alb
Target StringGroup Arn - ARN of an ALB Target Group.
- autoscaling
Group StringName - Name of ASG to associate with the ELB.
- elb String
- Name of the ELB.
- lb
Target StringGroup Arn - ARN of a load balancer target group.
- alb
Target stringGroup Arn - ARN of an ALB Target Group.
- autoscaling
Group stringName - Name of ASG to associate with the ELB.
- elb string
- Name of the ELB.
- lb
Target stringGroup Arn - ARN of a load balancer target group.
- alb_
target_ strgroup_ arn - ARN of an ALB Target Group.
- autoscaling_
group_ strname - Name of ASG to associate with the ELB.
- elb str
- Name of the ELB.
- lb_
target_ strgroup_ arn - ARN of a load balancer target group.
- alb
Target StringGroup Arn - ARN of an ALB Target Group.
- autoscaling
Group StringName - Name of ASG to associate with the ELB.
- elb String
- Name of the ELB.
- lb
Target StringGroup Arn - 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
awsTerraform Provider.
published on Tuesday, Mar 10, 2026 by Pulumi
