1. Packages
  2. AWS Classic
  3. API Docs
  4. ec2
  5. NetworkInterfaceAttachment

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

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

aws.ec2.NetworkInterfaceAttachment

Explore with Pulumi AI

aws logo

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

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

    Attach an Elastic network interface (ENI) resource with EC2 instance.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const test = new aws.ec2.NetworkInterfaceAttachment("test", {
        instanceId: testAwsInstance.id,
        networkInterfaceId: testAwsNetworkInterface.id,
        deviceIndex: 0,
    });
    
    import pulumi
    import pulumi_aws as aws
    
    test = aws.ec2.NetworkInterfaceAttachment("test",
        instance_id=test_aws_instance["id"],
        network_interface_id=test_aws_network_interface["id"],
        device_index=0)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ec2.NewNetworkInterfaceAttachment(ctx, "test", &ec2.NetworkInterfaceAttachmentArgs{
    			InstanceId:         pulumi.Any(testAwsInstance.Id),
    			NetworkInterfaceId: pulumi.Any(testAwsNetworkInterface.Id),
    			DeviceIndex:        pulumi.Int(0),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var test = new Aws.Ec2.NetworkInterfaceAttachment("test", new()
        {
            InstanceId = testAwsInstance.Id,
            NetworkInterfaceId = testAwsNetworkInterface.Id,
            DeviceIndex = 0,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.ec2.NetworkInterfaceAttachment;
    import com.pulumi.aws.ec2.NetworkInterfaceAttachmentArgs;
    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 test = new NetworkInterfaceAttachment("test", NetworkInterfaceAttachmentArgs.builder()        
                .instanceId(testAwsInstance.id())
                .networkInterfaceId(testAwsNetworkInterface.id())
                .deviceIndex(0)
                .build());
    
        }
    }
    
    resources:
      test:
        type: aws:ec2:NetworkInterfaceAttachment
        properties:
          instanceId: ${testAwsInstance.id}
          networkInterfaceId: ${testAwsNetworkInterface.id}
          deviceIndex: 0
    

    Create NetworkInterfaceAttachment Resource

    new NetworkInterfaceAttachment(name: string, args: NetworkInterfaceAttachmentArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkInterfaceAttachment(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   device_index: Optional[int] = None,
                                   instance_id: Optional[str] = None,
                                   network_interface_id: Optional[str] = None)
    @overload
    def NetworkInterfaceAttachment(resource_name: str,
                                   args: NetworkInterfaceAttachmentInitArgs,
                                   opts: Optional[ResourceOptions] = None)
    func NewNetworkInterfaceAttachment(ctx *Context, name string, args NetworkInterfaceAttachmentArgs, opts ...ResourceOption) (*NetworkInterfaceAttachment, error)
    public NetworkInterfaceAttachment(string name, NetworkInterfaceAttachmentArgs args, CustomResourceOptions? opts = null)
    public NetworkInterfaceAttachment(String name, NetworkInterfaceAttachmentArgs args)
    public NetworkInterfaceAttachment(String name, NetworkInterfaceAttachmentArgs args, CustomResourceOptions options)
    
    type: aws:ec2:NetworkInterfaceAttachment
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args NetworkInterfaceAttachmentArgs
    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 NetworkInterfaceAttachmentInitArgs
    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 NetworkInterfaceAttachmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkInterfaceAttachmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkInterfaceAttachmentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    NetworkInterfaceAttachment 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 NetworkInterfaceAttachment resource accepts the following input properties:

    DeviceIndex int
    Network interface index (int).
    InstanceId string
    Instance ID to attach.
    NetworkInterfaceId string
    ENI ID to attach.
    DeviceIndex int
    Network interface index (int).
    InstanceId string
    Instance ID to attach.
    NetworkInterfaceId string
    ENI ID to attach.
    deviceIndex Integer
    Network interface index (int).
    instanceId String
    Instance ID to attach.
    networkInterfaceId String
    ENI ID to attach.
    deviceIndex number
    Network interface index (int).
    instanceId string
    Instance ID to attach.
    networkInterfaceId string
    ENI ID to attach.
    device_index int
    Network interface index (int).
    instance_id str
    Instance ID to attach.
    network_interface_id str
    ENI ID to attach.
    deviceIndex Number
    Network interface index (int).
    instanceId String
    Instance ID to attach.
    networkInterfaceId String
    ENI ID to attach.

    Outputs

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

    AttachmentId string
    The ENI Attachment ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of the Network Interface Attachment.
    AttachmentId string
    The ENI Attachment ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of the Network Interface Attachment.
    attachmentId String
    The ENI Attachment ID.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of the Network Interface Attachment.
    attachmentId string
    The ENI Attachment ID.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    The status of the Network Interface Attachment.
    attachment_id str
    The ENI Attachment ID.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    The status of the Network Interface Attachment.
    attachmentId String
    The ENI Attachment ID.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of the Network Interface Attachment.

    Look up Existing NetworkInterfaceAttachment Resource

    Get an existing NetworkInterfaceAttachment 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?: NetworkInterfaceAttachmentState, opts?: CustomResourceOptions): NetworkInterfaceAttachment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            attachment_id: Optional[str] = None,
            device_index: Optional[int] = None,
            instance_id: Optional[str] = None,
            network_interface_id: Optional[str] = None,
            status: Optional[str] = None) -> NetworkInterfaceAttachment
    func GetNetworkInterfaceAttachment(ctx *Context, name string, id IDInput, state *NetworkInterfaceAttachmentState, opts ...ResourceOption) (*NetworkInterfaceAttachment, error)
    public static NetworkInterfaceAttachment Get(string name, Input<string> id, NetworkInterfaceAttachmentState? state, CustomResourceOptions? opts = null)
    public static NetworkInterfaceAttachment get(String name, Output<String> id, NetworkInterfaceAttachmentState 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:
    AttachmentId string
    The ENI Attachment ID.
    DeviceIndex int
    Network interface index (int).
    InstanceId string
    Instance ID to attach.
    NetworkInterfaceId string
    ENI ID to attach.
    Status string
    The status of the Network Interface Attachment.
    AttachmentId string
    The ENI Attachment ID.
    DeviceIndex int
    Network interface index (int).
    InstanceId string
    Instance ID to attach.
    NetworkInterfaceId string
    ENI ID to attach.
    Status string
    The status of the Network Interface Attachment.
    attachmentId String
    The ENI Attachment ID.
    deviceIndex Integer
    Network interface index (int).
    instanceId String
    Instance ID to attach.
    networkInterfaceId String
    ENI ID to attach.
    status String
    The status of the Network Interface Attachment.
    attachmentId string
    The ENI Attachment ID.
    deviceIndex number
    Network interface index (int).
    instanceId string
    Instance ID to attach.
    networkInterfaceId string
    ENI ID to attach.
    status string
    The status of the Network Interface Attachment.
    attachment_id str
    The ENI Attachment ID.
    device_index int
    Network interface index (int).
    instance_id str
    Instance ID to attach.
    network_interface_id str
    ENI ID to attach.
    status str
    The status of the Network Interface Attachment.
    attachmentId String
    The ENI Attachment ID.
    deviceIndex Number
    Network interface index (int).
    instanceId String
    Instance ID to attach.
    networkInterfaceId String
    ENI ID to attach.
    status String
    The status of the Network Interface Attachment.

    Import

    Using pulumi import, import Elastic network interface (ENI) Attachments using its Attachment ID. For example:

    $ pulumi import aws:ec2/networkInterfaceAttachment:NetworkInterfaceAttachment secondary_nic eni-attach-0a33842b4ec347c4c
    

    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.28.1 published on Thursday, Mar 28, 2024 by Pulumi