1. Packages
  2. AWS
  3. API Docs
  4. ec2
  5. NetworkInterfacePermission
AWS v6.74.0 published on Wednesday, Mar 26, 2025 by Pulumi

aws.ec2.NetworkInterfacePermission

Explore with Pulumi AI

aws logo
AWS v6.74.0 published on Wednesday, Mar 26, 2025 by Pulumi

    Grant cross-account access to an Elastic network interface (ENI).

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.ec2.NetworkInterface("example", {
        subnetId: exampleAwsSubnet.id,
        privateIps: ["10.0.0.50"],
        securityGroups: [exampleAwsSecurityGroup.id],
        attachments: [{
            instance: exampleAwsInstance.id,
            deviceIndex: 1,
        }],
    });
    const exampleNetworkInterfacePermission = new aws.ec2.NetworkInterfacePermission("example", {
        networkInterfaceId: example.id,
        awsAccountId: "123456789012",
        permission: "INSTANCE-ATTACH",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.ec2.NetworkInterface("example",
        subnet_id=example_aws_subnet["id"],
        private_ips=["10.0.0.50"],
        security_groups=[example_aws_security_group["id"]],
        attachments=[{
            "instance": example_aws_instance["id"],
            "device_index": 1,
        }])
    example_network_interface_permission = aws.ec2.NetworkInterfacePermission("example",
        network_interface_id=example.id,
        aws_account_id="123456789012",
        permission="INSTANCE-ATTACH")
    
    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 {
    		example, err := ec2.NewNetworkInterface(ctx, "example", &ec2.NetworkInterfaceArgs{
    			SubnetId: pulumi.Any(exampleAwsSubnet.Id),
    			PrivateIps: pulumi.StringArray{
    				pulumi.String("10.0.0.50"),
    			},
    			SecurityGroups: pulumi.StringArray{
    				exampleAwsSecurityGroup.Id,
    			},
    			Attachments: ec2.NetworkInterfaceAttachmentTypeArray{
    				&ec2.NetworkInterfaceAttachmentTypeArgs{
    					Instance:    pulumi.Any(exampleAwsInstance.Id),
    					DeviceIndex: pulumi.Int(1),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ec2.NewNetworkInterfacePermission(ctx, "example", &ec2.NetworkInterfacePermissionArgs{
    			NetworkInterfaceId: example.ID(),
    			AwsAccountId:       pulumi.String("123456789012"),
    			Permission:         pulumi.String("INSTANCE-ATTACH"),
    		})
    		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 example = new Aws.Ec2.NetworkInterface("example", new()
        {
            SubnetId = exampleAwsSubnet.Id,
            PrivateIps = new[]
            {
                "10.0.0.50",
            },
            SecurityGroups = new[]
            {
                exampleAwsSecurityGroup.Id,
            },
            Attachments = new[]
            {
                new Aws.Ec2.Inputs.NetworkInterfaceAttachmentArgs
                {
                    Instance = exampleAwsInstance.Id,
                    DeviceIndex = 1,
                },
            },
        });
    
        var exampleNetworkInterfacePermission = new Aws.Ec2.NetworkInterfacePermission("example", new()
        {
            NetworkInterfaceId = example.Id,
            AwsAccountId = "123456789012",
            Permission = "INSTANCE-ATTACH",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.ec2.NetworkInterface;
    import com.pulumi.aws.ec2.NetworkInterfaceArgs;
    import com.pulumi.aws.ec2.inputs.NetworkInterfaceAttachmentArgs;
    import com.pulumi.aws.ec2.NetworkInterfacePermission;
    import com.pulumi.aws.ec2.NetworkInterfacePermissionArgs;
    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 NetworkInterface("example", NetworkInterfaceArgs.builder()
                .subnetId(exampleAwsSubnet.id())
                .privateIps("10.0.0.50")
                .securityGroups(exampleAwsSecurityGroup.id())
                .attachments(NetworkInterfaceAttachmentArgs.builder()
                    .instance(exampleAwsInstance.id())
                    .deviceIndex(1)
                    .build())
                .build());
    
            var exampleNetworkInterfacePermission = new NetworkInterfacePermission("exampleNetworkInterfacePermission", NetworkInterfacePermissionArgs.builder()
                .networkInterfaceId(example.id())
                .awsAccountId("123456789012")
                .permission("INSTANCE-ATTACH")
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:ec2:NetworkInterface
        properties:
          subnetId: ${exampleAwsSubnet.id}
          privateIps:
            - 10.0.0.50
          securityGroups:
            - ${exampleAwsSecurityGroup.id}
          attachments:
            - instance: ${exampleAwsInstance.id}
              deviceIndex: 1
      exampleNetworkInterfacePermission:
        type: aws:ec2:NetworkInterfacePermission
        name: example
        properties:
          networkInterfaceId: ${example.id}
          awsAccountId: '123456789012'
          permission: INSTANCE-ATTACH
    

    Create NetworkInterfacePermission Resource

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

    Constructor syntax

    new NetworkInterfacePermission(name: string, args: NetworkInterfacePermissionArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkInterfacePermission(resource_name: str,
                                   args: NetworkInterfacePermissionArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def NetworkInterfacePermission(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   aws_account_id: Optional[str] = None,
                                   network_interface_id: Optional[str] = None,
                                   permission: Optional[str] = None,
                                   timeouts: Optional[NetworkInterfacePermissionTimeoutsArgs] = None)
    func NewNetworkInterfacePermission(ctx *Context, name string, args NetworkInterfacePermissionArgs, opts ...ResourceOption) (*NetworkInterfacePermission, error)
    public NetworkInterfacePermission(string name, NetworkInterfacePermissionArgs args, CustomResourceOptions? opts = null)
    public NetworkInterfacePermission(String name, NetworkInterfacePermissionArgs args)
    public NetworkInterfacePermission(String name, NetworkInterfacePermissionArgs args, CustomResourceOptions options)
    
    type: aws:ec2:NetworkInterfacePermission
    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 NetworkInterfacePermissionArgs
    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 NetworkInterfacePermissionArgs
    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 NetworkInterfacePermissionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkInterfacePermissionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkInterfacePermissionArgs
    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 networkInterfacePermissionResource = new Aws.Ec2.NetworkInterfacePermission("networkInterfacePermissionResource", new()
    {
        AwsAccountId = "string",
        NetworkInterfaceId = "string",
        Permission = "string",
        Timeouts = new Aws.Ec2.Inputs.NetworkInterfacePermissionTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
        },
    });
    
    example, err := ec2.NewNetworkInterfacePermission(ctx, "networkInterfacePermissionResource", &ec2.NetworkInterfacePermissionArgs{
    	AwsAccountId:       pulumi.String("string"),
    	NetworkInterfaceId: pulumi.String("string"),
    	Permission:         pulumi.String("string"),
    	Timeouts: &ec2.NetworkInterfacePermissionTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    	},
    })
    
    var networkInterfacePermissionResource = new NetworkInterfacePermission("networkInterfacePermissionResource", NetworkInterfacePermissionArgs.builder()
        .awsAccountId("string")
        .networkInterfaceId("string")
        .permission("string")
        .timeouts(NetworkInterfacePermissionTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .build())
        .build());
    
    network_interface_permission_resource = aws.ec2.NetworkInterfacePermission("networkInterfacePermissionResource",
        aws_account_id="string",
        network_interface_id="string",
        permission="string",
        timeouts={
            "create": "string",
            "delete": "string",
        })
    
    const networkInterfacePermissionResource = new aws.ec2.NetworkInterfacePermission("networkInterfacePermissionResource", {
        awsAccountId: "string",
        networkInterfaceId: "string",
        permission: "string",
        timeouts: {
            create: "string",
            "delete": "string",
        },
    });
    
    type: aws:ec2:NetworkInterfacePermission
    properties:
        awsAccountId: string
        networkInterfaceId: string
        permission: string
        timeouts:
            create: string
            delete: string
    

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

    AwsAccountId string
    The Amazon Web Services account ID.
    NetworkInterfaceId string
    The ID of the network interface.
    Permission string
    The type of permission to grant. Valid values are INSTANCE-ATTACH or EIP-ASSOCIATE.
    Timeouts NetworkInterfacePermissionTimeouts
    AwsAccountId string
    The Amazon Web Services account ID.
    NetworkInterfaceId string
    The ID of the network interface.
    Permission string
    The type of permission to grant. Valid values are INSTANCE-ATTACH or EIP-ASSOCIATE.
    Timeouts NetworkInterfacePermissionTimeoutsArgs
    awsAccountId String
    The Amazon Web Services account ID.
    networkInterfaceId String
    The ID of the network interface.
    permission String
    The type of permission to grant. Valid values are INSTANCE-ATTACH or EIP-ASSOCIATE.
    timeouts NetworkInterfacePermissionTimeouts
    awsAccountId string
    The Amazon Web Services account ID.
    networkInterfaceId string
    The ID of the network interface.
    permission string
    The type of permission to grant. Valid values are INSTANCE-ATTACH or EIP-ASSOCIATE.
    timeouts NetworkInterfacePermissionTimeouts
    aws_account_id str
    The Amazon Web Services account ID.
    network_interface_id str
    The ID of the network interface.
    permission str
    The type of permission to grant. Valid values are INSTANCE-ATTACH or EIP-ASSOCIATE.
    timeouts NetworkInterfacePermissionTimeoutsArgs
    awsAccountId String
    The Amazon Web Services account ID.
    networkInterfaceId String
    The ID of the network interface.
    permission String
    The type of permission to grant. Valid values are INSTANCE-ATTACH or EIP-ASSOCIATE.
    timeouts Property Map

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    NetworkInterfacePermissionId string
    ENI permission ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    NetworkInterfacePermissionId string
    ENI permission ID.
    id String
    The provider-assigned unique ID for this managed resource.
    networkInterfacePermissionId String
    ENI permission ID.
    id string
    The provider-assigned unique ID for this managed resource.
    networkInterfacePermissionId string
    ENI permission ID.
    id str
    The provider-assigned unique ID for this managed resource.
    network_interface_permission_id str
    ENI permission ID.
    id String
    The provider-assigned unique ID for this managed resource.
    networkInterfacePermissionId String
    ENI permission ID.

    Look up Existing NetworkInterfacePermission Resource

    Get an existing NetworkInterfacePermission 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?: NetworkInterfacePermissionState, opts?: CustomResourceOptions): NetworkInterfacePermission
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            aws_account_id: Optional[str] = None,
            network_interface_id: Optional[str] = None,
            network_interface_permission_id: Optional[str] = None,
            permission: Optional[str] = None,
            timeouts: Optional[NetworkInterfacePermissionTimeoutsArgs] = None) -> NetworkInterfacePermission
    func GetNetworkInterfacePermission(ctx *Context, name string, id IDInput, state *NetworkInterfacePermissionState, opts ...ResourceOption) (*NetworkInterfacePermission, error)
    public static NetworkInterfacePermission Get(string name, Input<string> id, NetworkInterfacePermissionState? state, CustomResourceOptions? opts = null)
    public static NetworkInterfacePermission get(String name, Output<String> id, NetworkInterfacePermissionState state, CustomResourceOptions options)
    resources:  _:    type: aws:ec2:NetworkInterfacePermission    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.
    The following state arguments are supported:
    AwsAccountId string
    The Amazon Web Services account ID.
    NetworkInterfaceId string
    The ID of the network interface.
    NetworkInterfacePermissionId string
    ENI permission ID.
    Permission string
    The type of permission to grant. Valid values are INSTANCE-ATTACH or EIP-ASSOCIATE.
    Timeouts NetworkInterfacePermissionTimeouts
    AwsAccountId string
    The Amazon Web Services account ID.
    NetworkInterfaceId string
    The ID of the network interface.
    NetworkInterfacePermissionId string
    ENI permission ID.
    Permission string
    The type of permission to grant. Valid values are INSTANCE-ATTACH or EIP-ASSOCIATE.
    Timeouts NetworkInterfacePermissionTimeoutsArgs
    awsAccountId String
    The Amazon Web Services account ID.
    networkInterfaceId String
    The ID of the network interface.
    networkInterfacePermissionId String
    ENI permission ID.
    permission String
    The type of permission to grant. Valid values are INSTANCE-ATTACH or EIP-ASSOCIATE.
    timeouts NetworkInterfacePermissionTimeouts
    awsAccountId string
    The Amazon Web Services account ID.
    networkInterfaceId string
    The ID of the network interface.
    networkInterfacePermissionId string
    ENI permission ID.
    permission string
    The type of permission to grant. Valid values are INSTANCE-ATTACH or EIP-ASSOCIATE.
    timeouts NetworkInterfacePermissionTimeouts
    aws_account_id str
    The Amazon Web Services account ID.
    network_interface_id str
    The ID of the network interface.
    network_interface_permission_id str
    ENI permission ID.
    permission str
    The type of permission to grant. Valid values are INSTANCE-ATTACH or EIP-ASSOCIATE.
    timeouts NetworkInterfacePermissionTimeoutsArgs
    awsAccountId String
    The Amazon Web Services account ID.
    networkInterfaceId String
    The ID of the network interface.
    networkInterfacePermissionId String
    ENI permission ID.
    permission String
    The type of permission to grant. Valid values are INSTANCE-ATTACH or EIP-ASSOCIATE.
    timeouts Property Map

    Supporting Types

    NetworkInterfacePermissionTimeouts, NetworkInterfacePermissionTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.

    Import

    Using pulumi import, import Network Interface Permissions using the network_interface_permission_id. For example:

    $ pulumi import aws:ec2/networkInterfacePermission:NetworkInterfacePermission example eni-perm-056ad97ce2ac377ed
    

    To learn more about importing existing cloud resources, see Importing resources.

    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
    AWS v6.74.0 published on Wednesday, Mar 26, 2025 by Pulumi