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

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

AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi

aws.ec2.InternetGateway

Explore with Pulumi AI

aws logo

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

AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi

    Provides a resource to create a VPC Internet Gateway.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const gw = new aws.ec2.InternetGateway("gw", {
        vpcId: main.id,
        tags: {
            Name: "main",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    gw = aws.ec2.InternetGateway("gw",
        vpc_id=main["id"],
        tags={
            "Name": "main",
        })
    
    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.NewInternetGateway(ctx, "gw", &ec2.InternetGatewayArgs{
    			VpcId: pulumi.Any(main.Id),
    			Tags: pulumi.StringMap{
    				"Name": pulumi.String("main"),
    			},
    		})
    		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 gw = new Aws.Ec2.InternetGateway("gw", new()
        {
            VpcId = main.Id,
            Tags = 
            {
                { "Name", "main" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.ec2.InternetGateway;
    import com.pulumi.aws.ec2.InternetGatewayArgs;
    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 gw = new InternetGateway("gw", InternetGatewayArgs.builder()        
                .vpcId(main.id())
                .tags(Map.of("Name", "main"))
                .build());
    
        }
    }
    
    resources:
      gw:
        type: aws:ec2:InternetGateway
        properties:
          vpcId: ${main.id}
          tags:
            Name: main
    

    Create InternetGateway Resource

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

    Constructor syntax

    new InternetGateway(name: string, args?: InternetGatewayArgs, opts?: CustomResourceOptions);
    @overload
    def InternetGateway(resource_name: str,
                        args: Optional[InternetGatewayArgs] = None,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def InternetGateway(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        tags: Optional[Mapping[str, str]] = None,
                        vpc_id: Optional[str] = None)
    func NewInternetGateway(ctx *Context, name string, args *InternetGatewayArgs, opts ...ResourceOption) (*InternetGateway, error)
    public InternetGateway(string name, InternetGatewayArgs? args = null, CustomResourceOptions? opts = null)
    public InternetGateway(String name, InternetGatewayArgs args)
    public InternetGateway(String name, InternetGatewayArgs args, CustomResourceOptions options)
    
    type: aws:ec2:InternetGateway
    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 InternetGatewayArgs
    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 InternetGatewayArgs
    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 InternetGatewayArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InternetGatewayArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InternetGatewayArgs
    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 internetGatewayResource = new Aws.Ec2.InternetGateway("internetGatewayResource", new()
    {
        Tags = 
        {
            { "string", "string" },
        },
        VpcId = "string",
    });
    
    example, err := ec2.NewInternetGateway(ctx, "internetGatewayResource", &ec2.InternetGatewayArgs{
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	VpcId: pulumi.String("string"),
    })
    
    var internetGatewayResource = new InternetGateway("internetGatewayResource", InternetGatewayArgs.builder()        
        .tags(Map.of("string", "string"))
        .vpcId("string")
        .build());
    
    internet_gateway_resource = aws.ec2.InternetGateway("internetGatewayResource",
        tags={
            "string": "string",
        },
        vpc_id="string")
    
    const internetGatewayResource = new aws.ec2.InternetGateway("internetGatewayResource", {
        tags: {
            string: "string",
        },
        vpcId: "string",
    });
    
    type: aws:ec2:InternetGateway
    properties:
        tags:
            string: string
        vpcId: string
    

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

    Tags Dictionary<string, string>

    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Note: It's recommended to denote that the AWS Instance or Elastic IP depends on the Internet Gateway. For example:

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    

    const gw = new aws.ec2.InternetGateway("gw", {vpcId: main.id}); const foo = new aws.ec2.Instance("foo", {}, { dependsOn: [gw], });

    import pulumi
    import pulumi_aws as aws
    
    gw = aws.ec2.InternetGateway("gw", vpc_id=main["id"])
    foo = aws.ec2.Instance("foo", opts=pulumi.ResourceOptions(depends_on=[gw]))
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var gw = new Aws.Ec2.InternetGateway("gw", new()
        {
            VpcId = main.Id,
        });
    
        var foo = new Aws.Ec2.Instance("foo", new()
        {
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                gw, 
            },
        });
    
    });
    
    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 {
    		gw, err := ec2.NewInternetGateway(ctx, "gw", &ec2.InternetGatewayArgs{
    			VpcId: pulumi.Any(main.Id),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ec2.NewInstance(ctx, "foo", nil, pulumi.DependsOn([]pulumi.Resource{
    			gw,
    		}))
    		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.ec2.InternetGateway;
    import com.pulumi.aws.ec2.InternetGatewayArgs;
    import com.pulumi.aws.ec2.Instance;
    import com.pulumi.aws.ec2.InstanceArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 gw = new InternetGateway("gw", InternetGatewayArgs.builder()        
                .vpcId(main.id())
                .build());
    
            var foo = new Instance("foo", InstanceArgs.Empty, CustomResourceOptions.builder()
                .dependsOn(gw)
                .build());
    
        }
    }
    
    resources:
      gw:
        type: aws:ec2:InternetGateway
        properties:
          vpcId: ${main.id}
      foo:
        type: aws:ec2:Instance
        options:
          dependson:
            - ${gw}
    
    VpcId string
    The VPC ID to create in. See the aws.ec2.InternetGatewayAttachment resource for an alternate way to attach an Internet Gateway to a VPC.
    Tags map[string]string

    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Note: It's recommended to denote that the AWS Instance or Elastic IP depends on the Internet Gateway. For example:

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    

    const gw = new aws.ec2.InternetGateway("gw", {vpcId: main.id}); const foo = new aws.ec2.Instance("foo", {}, { dependsOn: [gw], });

    import pulumi
    import pulumi_aws as aws
    
    gw = aws.ec2.InternetGateway("gw", vpc_id=main["id"])
    foo = aws.ec2.Instance("foo", opts=pulumi.ResourceOptions(depends_on=[gw]))
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var gw = new Aws.Ec2.InternetGateway("gw", new()
        {
            VpcId = main.Id,
        });
    
        var foo = new Aws.Ec2.Instance("foo", new()
        {
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                gw, 
            },
        });
    
    });
    
    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 {
    		gw, err := ec2.NewInternetGateway(ctx, "gw", &ec2.InternetGatewayArgs{
    			VpcId: pulumi.Any(main.Id),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ec2.NewInstance(ctx, "foo", nil, pulumi.DependsOn([]pulumi.Resource{
    			gw,
    		}))
    		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.ec2.InternetGateway;
    import com.pulumi.aws.ec2.InternetGatewayArgs;
    import com.pulumi.aws.ec2.Instance;
    import com.pulumi.aws.ec2.InstanceArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 gw = new InternetGateway("gw", InternetGatewayArgs.builder()        
                .vpcId(main.id())
                .build());
    
            var foo = new Instance("foo", InstanceArgs.Empty, CustomResourceOptions.builder()
                .dependsOn(gw)
                .build());
    
        }
    }
    
    resources:
      gw:
        type: aws:ec2:InternetGateway
        properties:
          vpcId: ${main.id}
      foo:
        type: aws:ec2:Instance
        options:
          dependson:
            - ${gw}
    
    VpcId string
    The VPC ID to create in. See the aws.ec2.InternetGatewayAttachment resource for an alternate way to attach an Internet Gateway to a VPC.
    tags Map<String,String>

    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Note: It's recommended to denote that the AWS Instance or Elastic IP depends on the Internet Gateway. For example:

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    

    const gw = new aws.ec2.InternetGateway("gw", {vpcId: main.id}); const foo = new aws.ec2.Instance("foo", {}, { dependsOn: [gw], });

    import pulumi
    import pulumi_aws as aws
    
    gw = aws.ec2.InternetGateway("gw", vpc_id=main["id"])
    foo = aws.ec2.Instance("foo", opts=pulumi.ResourceOptions(depends_on=[gw]))
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var gw = new Aws.Ec2.InternetGateway("gw", new()
        {
            VpcId = main.Id,
        });
    
        var foo = new Aws.Ec2.Instance("foo", new()
        {
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                gw, 
            },
        });
    
    });
    
    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 {
    		gw, err := ec2.NewInternetGateway(ctx, "gw", &ec2.InternetGatewayArgs{
    			VpcId: pulumi.Any(main.Id),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ec2.NewInstance(ctx, "foo", nil, pulumi.DependsOn([]pulumi.Resource{
    			gw,
    		}))
    		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.ec2.InternetGateway;
    import com.pulumi.aws.ec2.InternetGatewayArgs;
    import com.pulumi.aws.ec2.Instance;
    import com.pulumi.aws.ec2.InstanceArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 gw = new InternetGateway("gw", InternetGatewayArgs.builder()        
                .vpcId(main.id())
                .build());
    
            var foo = new Instance("foo", InstanceArgs.Empty, CustomResourceOptions.builder()
                .dependsOn(gw)
                .build());
    
        }
    }
    
    resources:
      gw:
        type: aws:ec2:InternetGateway
        properties:
          vpcId: ${main.id}
      foo:
        type: aws:ec2:Instance
        options:
          dependson:
            - ${gw}
    
    vpcId String
    The VPC ID to create in. See the aws.ec2.InternetGatewayAttachment resource for an alternate way to attach an Internet Gateway to a VPC.
    tags {[key: string]: string}

    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Note: It's recommended to denote that the AWS Instance or Elastic IP depends on the Internet Gateway. For example:

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    

    const gw = new aws.ec2.InternetGateway("gw", {vpcId: main.id}); const foo = new aws.ec2.Instance("foo", {}, { dependsOn: [gw], });

    import pulumi
    import pulumi_aws as aws
    
    gw = aws.ec2.InternetGateway("gw", vpc_id=main["id"])
    foo = aws.ec2.Instance("foo", opts=pulumi.ResourceOptions(depends_on=[gw]))
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var gw = new Aws.Ec2.InternetGateway("gw", new()
        {
            VpcId = main.Id,
        });
    
        var foo = new Aws.Ec2.Instance("foo", new()
        {
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                gw, 
            },
        });
    
    });
    
    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 {
    		gw, err := ec2.NewInternetGateway(ctx, "gw", &ec2.InternetGatewayArgs{
    			VpcId: pulumi.Any(main.Id),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ec2.NewInstance(ctx, "foo", nil, pulumi.DependsOn([]pulumi.Resource{
    			gw,
    		}))
    		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.ec2.InternetGateway;
    import com.pulumi.aws.ec2.InternetGatewayArgs;
    import com.pulumi.aws.ec2.Instance;
    import com.pulumi.aws.ec2.InstanceArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 gw = new InternetGateway("gw", InternetGatewayArgs.builder()        
                .vpcId(main.id())
                .build());
    
            var foo = new Instance("foo", InstanceArgs.Empty, CustomResourceOptions.builder()
                .dependsOn(gw)
                .build());
    
        }
    }
    
    resources:
      gw:
        type: aws:ec2:InternetGateway
        properties:
          vpcId: ${main.id}
      foo:
        type: aws:ec2:Instance
        options:
          dependson:
            - ${gw}
    
    vpcId string
    The VPC ID to create in. See the aws.ec2.InternetGatewayAttachment resource for an alternate way to attach an Internet Gateway to a VPC.
    tags Mapping[str, str]

    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Note: It's recommended to denote that the AWS Instance or Elastic IP depends on the Internet Gateway. For example:

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    

    const gw = new aws.ec2.InternetGateway("gw", {vpcId: main.id}); const foo = new aws.ec2.Instance("foo", {}, { dependsOn: [gw], });

    import pulumi
    import pulumi_aws as aws
    
    gw = aws.ec2.InternetGateway("gw", vpc_id=main["id"])
    foo = aws.ec2.Instance("foo", opts=pulumi.ResourceOptions(depends_on=[gw]))
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var gw = new Aws.Ec2.InternetGateway("gw", new()
        {
            VpcId = main.Id,
        });
    
        var foo = new Aws.Ec2.Instance("foo", new()
        {
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                gw, 
            },
        });
    
    });
    
    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 {
    		gw, err := ec2.NewInternetGateway(ctx, "gw", &ec2.InternetGatewayArgs{
    			VpcId: pulumi.Any(main.Id),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ec2.NewInstance(ctx, "foo", nil, pulumi.DependsOn([]pulumi.Resource{
    			gw,
    		}))
    		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.ec2.InternetGateway;
    import com.pulumi.aws.ec2.InternetGatewayArgs;
    import com.pulumi.aws.ec2.Instance;
    import com.pulumi.aws.ec2.InstanceArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 gw = new InternetGateway("gw", InternetGatewayArgs.builder()        
                .vpcId(main.id())
                .build());
    
            var foo = new Instance("foo", InstanceArgs.Empty, CustomResourceOptions.builder()
                .dependsOn(gw)
                .build());
    
        }
    }
    
    resources:
      gw:
        type: aws:ec2:InternetGateway
        properties:
          vpcId: ${main.id}
      foo:
        type: aws:ec2:Instance
        options:
          dependson:
            - ${gw}
    
    vpc_id str
    The VPC ID to create in. See the aws.ec2.InternetGatewayAttachment resource for an alternate way to attach an Internet Gateway to a VPC.
    tags Map<String>

    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Note: It's recommended to denote that the AWS Instance or Elastic IP depends on the Internet Gateway. For example:

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    

    const gw = new aws.ec2.InternetGateway("gw", {vpcId: main.id}); const foo = new aws.ec2.Instance("foo", {}, { dependsOn: [gw], });

    import pulumi
    import pulumi_aws as aws
    
    gw = aws.ec2.InternetGateway("gw", vpc_id=main["id"])
    foo = aws.ec2.Instance("foo", opts=pulumi.ResourceOptions(depends_on=[gw]))
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var gw = new Aws.Ec2.InternetGateway("gw", new()
        {
            VpcId = main.Id,
        });
    
        var foo = new Aws.Ec2.Instance("foo", new()
        {
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                gw, 
            },
        });
    
    });
    
    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 {
    		gw, err := ec2.NewInternetGateway(ctx, "gw", &ec2.InternetGatewayArgs{
    			VpcId: pulumi.Any(main.Id),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ec2.NewInstance(ctx, "foo", nil, pulumi.DependsOn([]pulumi.Resource{
    			gw,
    		}))
    		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.ec2.InternetGateway;
    import com.pulumi.aws.ec2.InternetGatewayArgs;
    import com.pulumi.aws.ec2.Instance;
    import com.pulumi.aws.ec2.InstanceArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 gw = new InternetGateway("gw", InternetGatewayArgs.builder()        
                .vpcId(main.id())
                .build());
    
            var foo = new Instance("foo", InstanceArgs.Empty, CustomResourceOptions.builder()
                .dependsOn(gw)
                .build());
    
        }
    }
    
    resources:
      gw:
        type: aws:ec2:InternetGateway
        properties:
          vpcId: ${main.id}
      foo:
        type: aws:ec2:Instance
        options:
          dependson:
            - ${gw}
    
    vpcId String
    The VPC ID to create in. See the aws.ec2.InternetGatewayAttachment resource for an alternate way to attach an Internet Gateway to a VPC.

    Outputs

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

    Arn string
    The ARN of the Internet Gateway.
    Id string
    The provider-assigned unique ID for this managed resource.
    OwnerId string
    The ID of the AWS account that owns the internet gateway.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Arn string
    The ARN of the Internet Gateway.
    Id string
    The provider-assigned unique ID for this managed resource.
    OwnerId string
    The ID of the AWS account that owns the internet gateway.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn String
    The ARN of the Internet Gateway.
    id String
    The provider-assigned unique ID for this managed resource.
    ownerId String
    The ID of the AWS account that owns the internet gateway.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn string
    The ARN of the Internet Gateway.
    id string
    The provider-assigned unique ID for this managed resource.
    ownerId string
    The ID of the AWS account that owns the internet gateway.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn str
    The ARN of the Internet Gateway.
    id str
    The provider-assigned unique ID for this managed resource.
    owner_id str
    The ID of the AWS account that owns the internet gateway.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn String
    The ARN of the Internet Gateway.
    id String
    The provider-assigned unique ID for this managed resource.
    ownerId String
    The ID of the AWS account that owns the internet gateway.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Look up Existing InternetGateway Resource

    Get an existing InternetGateway 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?: InternetGatewayState, opts?: CustomResourceOptions): InternetGateway
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            owner_id: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            vpc_id: Optional[str] = None) -> InternetGateway
    func GetInternetGateway(ctx *Context, name string, id IDInput, state *InternetGatewayState, opts ...ResourceOption) (*InternetGateway, error)
    public static InternetGateway Get(string name, Input<string> id, InternetGatewayState? state, CustomResourceOptions? opts = null)
    public static InternetGateway get(String name, Output<String> id, InternetGatewayState 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:
    Arn string
    The ARN of the Internet Gateway.
    OwnerId string
    The ID of the AWS account that owns the internet gateway.
    Tags Dictionary<string, string>

    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Note: It's recommended to denote that the AWS Instance or Elastic IP depends on the Internet Gateway. For example:

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    

    const gw = new aws.ec2.InternetGateway("gw", {vpcId: main.id}); const foo = new aws.ec2.Instance("foo", {}, { dependsOn: [gw], });

    import pulumi
    import pulumi_aws as aws
    
    gw = aws.ec2.InternetGateway("gw", vpc_id=main["id"])
    foo = aws.ec2.Instance("foo", opts=pulumi.ResourceOptions(depends_on=[gw]))
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var gw = new Aws.Ec2.InternetGateway("gw", new()
        {
            VpcId = main.Id,
        });
    
        var foo = new Aws.Ec2.Instance("foo", new()
        {
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                gw, 
            },
        });
    
    });
    
    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 {
    		gw, err := ec2.NewInternetGateway(ctx, "gw", &ec2.InternetGatewayArgs{
    			VpcId: pulumi.Any(main.Id),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ec2.NewInstance(ctx, "foo", nil, pulumi.DependsOn([]pulumi.Resource{
    			gw,
    		}))
    		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.ec2.InternetGateway;
    import com.pulumi.aws.ec2.InternetGatewayArgs;
    import com.pulumi.aws.ec2.Instance;
    import com.pulumi.aws.ec2.InstanceArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 gw = new InternetGateway("gw", InternetGatewayArgs.builder()        
                .vpcId(main.id())
                .build());
    
            var foo = new Instance("foo", InstanceArgs.Empty, CustomResourceOptions.builder()
                .dependsOn(gw)
                .build());
    
        }
    }
    
    resources:
      gw:
        type: aws:ec2:InternetGateway
        properties:
          vpcId: ${main.id}
      foo:
        type: aws:ec2:Instance
        options:
          dependson:
            - ${gw}
    
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    VpcId string
    The VPC ID to create in. See the aws.ec2.InternetGatewayAttachment resource for an alternate way to attach an Internet Gateway to a VPC.
    Arn string
    The ARN of the Internet Gateway.
    OwnerId string
    The ID of the AWS account that owns the internet gateway.
    Tags map[string]string

    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Note: It's recommended to denote that the AWS Instance or Elastic IP depends on the Internet Gateway. For example:

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    

    const gw = new aws.ec2.InternetGateway("gw", {vpcId: main.id}); const foo = new aws.ec2.Instance("foo", {}, { dependsOn: [gw], });

    import pulumi
    import pulumi_aws as aws
    
    gw = aws.ec2.InternetGateway("gw", vpc_id=main["id"])
    foo = aws.ec2.Instance("foo", opts=pulumi.ResourceOptions(depends_on=[gw]))
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var gw = new Aws.Ec2.InternetGateway("gw", new()
        {
            VpcId = main.Id,
        });
    
        var foo = new Aws.Ec2.Instance("foo", new()
        {
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                gw, 
            },
        });
    
    });
    
    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 {
    		gw, err := ec2.NewInternetGateway(ctx, "gw", &ec2.InternetGatewayArgs{
    			VpcId: pulumi.Any(main.Id),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ec2.NewInstance(ctx, "foo", nil, pulumi.DependsOn([]pulumi.Resource{
    			gw,
    		}))
    		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.ec2.InternetGateway;
    import com.pulumi.aws.ec2.InternetGatewayArgs;
    import com.pulumi.aws.ec2.Instance;
    import com.pulumi.aws.ec2.InstanceArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 gw = new InternetGateway("gw", InternetGatewayArgs.builder()        
                .vpcId(main.id())
                .build());
    
            var foo = new Instance("foo", InstanceArgs.Empty, CustomResourceOptions.builder()
                .dependsOn(gw)
                .build());
    
        }
    }
    
    resources:
      gw:
        type: aws:ec2:InternetGateway
        properties:
          vpcId: ${main.id}
      foo:
        type: aws:ec2:Instance
        options:
          dependson:
            - ${gw}
    
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    VpcId string
    The VPC ID to create in. See the aws.ec2.InternetGatewayAttachment resource for an alternate way to attach an Internet Gateway to a VPC.
    arn String
    The ARN of the Internet Gateway.
    ownerId String
    The ID of the AWS account that owns the internet gateway.
    tags Map<String,String>

    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Note: It's recommended to denote that the AWS Instance or Elastic IP depends on the Internet Gateway. For example:

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    

    const gw = new aws.ec2.InternetGateway("gw", {vpcId: main.id}); const foo = new aws.ec2.Instance("foo", {}, { dependsOn: [gw], });

    import pulumi
    import pulumi_aws as aws
    
    gw = aws.ec2.InternetGateway("gw", vpc_id=main["id"])
    foo = aws.ec2.Instance("foo", opts=pulumi.ResourceOptions(depends_on=[gw]))
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var gw = new Aws.Ec2.InternetGateway("gw", new()
        {
            VpcId = main.Id,
        });
    
        var foo = new Aws.Ec2.Instance("foo", new()
        {
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                gw, 
            },
        });
    
    });
    
    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 {
    		gw, err := ec2.NewInternetGateway(ctx, "gw", &ec2.InternetGatewayArgs{
    			VpcId: pulumi.Any(main.Id),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ec2.NewInstance(ctx, "foo", nil, pulumi.DependsOn([]pulumi.Resource{
    			gw,
    		}))
    		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.ec2.InternetGateway;
    import com.pulumi.aws.ec2.InternetGatewayArgs;
    import com.pulumi.aws.ec2.Instance;
    import com.pulumi.aws.ec2.InstanceArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 gw = new InternetGateway("gw", InternetGatewayArgs.builder()        
                .vpcId(main.id())
                .build());
    
            var foo = new Instance("foo", InstanceArgs.Empty, CustomResourceOptions.builder()
                .dependsOn(gw)
                .build());
    
        }
    }
    
    resources:
      gw:
        type: aws:ec2:InternetGateway
        properties:
          vpcId: ${main.id}
      foo:
        type: aws:ec2:Instance
        options:
          dependson:
            - ${gw}
    
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    vpcId String
    The VPC ID to create in. See the aws.ec2.InternetGatewayAttachment resource for an alternate way to attach an Internet Gateway to a VPC.
    arn string
    The ARN of the Internet Gateway.
    ownerId string
    The ID of the AWS account that owns the internet gateway.
    tags {[key: string]: string}

    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Note: It's recommended to denote that the AWS Instance or Elastic IP depends on the Internet Gateway. For example:

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    

    const gw = new aws.ec2.InternetGateway("gw", {vpcId: main.id}); const foo = new aws.ec2.Instance("foo", {}, { dependsOn: [gw], });

    import pulumi
    import pulumi_aws as aws
    
    gw = aws.ec2.InternetGateway("gw", vpc_id=main["id"])
    foo = aws.ec2.Instance("foo", opts=pulumi.ResourceOptions(depends_on=[gw]))
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var gw = new Aws.Ec2.InternetGateway("gw", new()
        {
            VpcId = main.Id,
        });
    
        var foo = new Aws.Ec2.Instance("foo", new()
        {
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                gw, 
            },
        });
    
    });
    
    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 {
    		gw, err := ec2.NewInternetGateway(ctx, "gw", &ec2.InternetGatewayArgs{
    			VpcId: pulumi.Any(main.Id),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ec2.NewInstance(ctx, "foo", nil, pulumi.DependsOn([]pulumi.Resource{
    			gw,
    		}))
    		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.ec2.InternetGateway;
    import com.pulumi.aws.ec2.InternetGatewayArgs;
    import com.pulumi.aws.ec2.Instance;
    import com.pulumi.aws.ec2.InstanceArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 gw = new InternetGateway("gw", InternetGatewayArgs.builder()        
                .vpcId(main.id())
                .build());
    
            var foo = new Instance("foo", InstanceArgs.Empty, CustomResourceOptions.builder()
                .dependsOn(gw)
                .build());
    
        }
    }
    
    resources:
      gw:
        type: aws:ec2:InternetGateway
        properties:
          vpcId: ${main.id}
      foo:
        type: aws:ec2:Instance
        options:
          dependson:
            - ${gw}
    
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    vpcId string
    The VPC ID to create in. See the aws.ec2.InternetGatewayAttachment resource for an alternate way to attach an Internet Gateway to a VPC.
    arn str
    The ARN of the Internet Gateway.
    owner_id str
    The ID of the AWS account that owns the internet gateway.
    tags Mapping[str, str]

    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Note: It's recommended to denote that the AWS Instance or Elastic IP depends on the Internet Gateway. For example:

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    

    const gw = new aws.ec2.InternetGateway("gw", {vpcId: main.id}); const foo = new aws.ec2.Instance("foo", {}, { dependsOn: [gw], });

    import pulumi
    import pulumi_aws as aws
    
    gw = aws.ec2.InternetGateway("gw", vpc_id=main["id"])
    foo = aws.ec2.Instance("foo", opts=pulumi.ResourceOptions(depends_on=[gw]))
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var gw = new Aws.Ec2.InternetGateway("gw", new()
        {
            VpcId = main.Id,
        });
    
        var foo = new Aws.Ec2.Instance("foo", new()
        {
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                gw, 
            },
        });
    
    });
    
    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 {
    		gw, err := ec2.NewInternetGateway(ctx, "gw", &ec2.InternetGatewayArgs{
    			VpcId: pulumi.Any(main.Id),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ec2.NewInstance(ctx, "foo", nil, pulumi.DependsOn([]pulumi.Resource{
    			gw,
    		}))
    		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.ec2.InternetGateway;
    import com.pulumi.aws.ec2.InternetGatewayArgs;
    import com.pulumi.aws.ec2.Instance;
    import com.pulumi.aws.ec2.InstanceArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 gw = new InternetGateway("gw", InternetGatewayArgs.builder()        
                .vpcId(main.id())
                .build());
    
            var foo = new Instance("foo", InstanceArgs.Empty, CustomResourceOptions.builder()
                .dependsOn(gw)
                .build());
    
        }
    }
    
    resources:
      gw:
        type: aws:ec2:InternetGateway
        properties:
          vpcId: ${main.id}
      foo:
        type: aws:ec2:Instance
        options:
          dependson:
            - ${gw}
    
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    vpc_id str
    The VPC ID to create in. See the aws.ec2.InternetGatewayAttachment resource for an alternate way to attach an Internet Gateway to a VPC.
    arn String
    The ARN of the Internet Gateway.
    ownerId String
    The ID of the AWS account that owns the internet gateway.
    tags Map<String>

    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Note: It's recommended to denote that the AWS Instance or Elastic IP depends on the Internet Gateway. For example:

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    

    const gw = new aws.ec2.InternetGateway("gw", {vpcId: main.id}); const foo = new aws.ec2.Instance("foo", {}, { dependsOn: [gw], });

    import pulumi
    import pulumi_aws as aws
    
    gw = aws.ec2.InternetGateway("gw", vpc_id=main["id"])
    foo = aws.ec2.Instance("foo", opts=pulumi.ResourceOptions(depends_on=[gw]))
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var gw = new Aws.Ec2.InternetGateway("gw", new()
        {
            VpcId = main.Id,
        });
    
        var foo = new Aws.Ec2.Instance("foo", new()
        {
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                gw, 
            },
        });
    
    });
    
    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 {
    		gw, err := ec2.NewInternetGateway(ctx, "gw", &ec2.InternetGatewayArgs{
    			VpcId: pulumi.Any(main.Id),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ec2.NewInstance(ctx, "foo", nil, pulumi.DependsOn([]pulumi.Resource{
    			gw,
    		}))
    		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.ec2.InternetGateway;
    import com.pulumi.aws.ec2.InternetGatewayArgs;
    import com.pulumi.aws.ec2.Instance;
    import com.pulumi.aws.ec2.InstanceArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 gw = new InternetGateway("gw", InternetGatewayArgs.builder()        
                .vpcId(main.id())
                .build());
    
            var foo = new Instance("foo", InstanceArgs.Empty, CustomResourceOptions.builder()
                .dependsOn(gw)
                .build());
    
        }
    }
    
    resources:
      gw:
        type: aws:ec2:InternetGateway
        properties:
          vpcId: ${main.id}
      foo:
        type: aws:ec2:Instance
        options:
          dependson:
            - ${gw}
    
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    vpcId String
    The VPC ID to create in. See the aws.ec2.InternetGatewayAttachment resource for an alternate way to attach an Internet Gateway to a VPC.

    Import

    Using pulumi import, import Internet Gateways using the id. For example:

    $ pulumi import aws:ec2/internetGateway:InternetGateway gw igw-c0a643a9
    

    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

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

    AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi