Attachment
Provides an AutoScaling Attachment resource.
NOTE on AutoScaling Groups and ASG Attachments: This provider currently provides both a standalone ASG Attachment resource (describing an ASG attached to an ELB), and an AutoScaling Group resource with
load_balancersdefined in-line. At this time you cannot use an ASG with in-line load balancers in conjunction with an ASG Attachment resource. Doing so will cause a conflict and will overwrite attachments.
Example Usage
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
// Create a new load balancer attachment
var asgAttachmentBar = new Aws.AutoScaling.Attachment("asgAttachmentBar", new Aws.AutoScaling.AttachmentArgs
{
AutoscalingGroupName = aws_autoscaling_group.Asg.Id,
Elb = aws_elb.Bar.Id,
});
}
}
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v2/go/aws/autoscaling"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := autoscaling.NewAttachment(ctx, "asgAttachmentBar", &autoscaling.AttachmentArgs{
AutoscalingGroupName: pulumi.String(aws_autoscaling_group.Asg.Id),
Elb: pulumi.String(aws_elb.Bar.Id),
})
if err != nil {
return err
}
return nil
})
}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"])import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
// Create a new load balancer attachment
const asgAttachmentBar = new aws.autoscaling.Attachment("asg_attachment_bar", {
autoscalingGroupName: aws_autoscaling_group_asg.id,
elb: aws_elb_bar.id,
});Create a Attachment Resource
new Attachment(name: string, args: AttachmentArgs, opts?: CustomResourceOptions);def Attachment(resource_name, opts=None, alb_target_group_arn=None, autoscaling_group_name=None, elb=None, __props__=None);func NewAttachment(ctx *Context, name string, args AttachmentArgs, opts ...ResourceOption) (*Attachment, error)public Attachment(string name, AttachmentArgs args, CustomResourceOptions? opts = null)- 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.
- opts ResourceOptions
- A bag of options that control this 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.
Attachment Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The Attachment resource accepts the following input properties:
- Autoscaling
Group stringName Name of ASG to associate with the ELB.
- Alb
Target stringGroup Arn The ARN of an ALB Target Group.
- Elb string
The name of the ELB.
- Autoscaling
Group stringName Name of ASG to associate with the ELB.
- Alb
Target stringGroup Arn The ARN of an ALB Target Group.
- Elb string
The name of the ELB.
- autoscaling
Group stringName Name of ASG to associate with the ELB.
- alb
Target stringGroup Arn The ARN of an ALB Target Group.
- elb string
The name of the ELB.
- autoscaling_
group_ strname Name of ASG to associate with the ELB.
- alb_
target_ strgroup_ arn The ARN of an ALB Target Group.
- elb str
The name of the ELB.
Outputs
All input properties are implicitly available as output properties. Additionally, the Attachment resource produces the following output properties:
Look up an 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): Attachmentstatic get(resource_name, id, opts=None, alb_target_group_arn=None, autoscaling_group_name=None, elb=None, __props__=None);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)- 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.
The following state arguments are supported:
- Alb
Target stringGroup Arn The ARN of an ALB Target Group.
- Autoscaling
Group stringName Name of ASG to associate with the ELB.
- Elb string
The name of the ELB.
- Alb
Target stringGroup Arn The ARN of an ALB Target Group.
- Autoscaling
Group stringName Name of ASG to associate with the ELB.
- Elb string
The name of the ELB.
- alb
Target stringGroup Arn The ARN of an ALB Target Group.
- autoscaling
Group stringName Name of ASG to associate with the ELB.
- elb string
The name of the ELB.
- alb_
target_ strgroup_ arn The ARN of an ALB Target Group.
- autoscaling_
group_ strname Name of ASG to associate with the ELB.
- elb str
The name of the ELB.
Package Details
- Repository
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.