Try AWS Native preview for resources not in the classic version.
aws.ec2.InternetGateway
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
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.
Constructor 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:
- 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}
- Vpc
Id 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.
- 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}
- Vpc
Id 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.
- 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}
- vpc
Id 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.
- {[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}
- vpc
Id 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.
- 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.
- 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}
- vpc
Id 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.
- Owner
Id string - The ID of the AWS account that owns the internet gateway.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- The ARN of the Internet Gateway.
- Id string
- The provider-assigned unique ID for this managed resource.
- Owner
Id string - The ID of the AWS account that owns the internet gateway.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The ARN of the Internet Gateway.
- id String
- The provider-assigned unique ID for this managed resource.
- owner
Id String - The ID of the AWS account that owns the internet gateway.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- The ARN of the Internet Gateway.
- id string
- The provider-assigned unique ID for this managed resource.
- owner
Id string - The ID of the AWS account that owns the internet gateway.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- 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.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The ARN of the Internet Gateway.
- id String
- The provider-assigned unique ID for this managed resource.
- owner
Id String - The ID of the AWS account that owns the internet gateway.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
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.
- Arn string
- The ARN of the Internet Gateway.
- Owner
Id string - The ID of the AWS account that owns the internet gateway.
- 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}
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Vpc
Id 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.
- Owner
Id string - The ID of the AWS account that owns the internet gateway.
- 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}
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Vpc
Id 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.
- owner
Id String - The ID of the AWS account that owns the internet gateway.
- 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}
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vpc
Id 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.
- owner
Id string - The ID of the AWS account that owns the internet gateway.
- {[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}
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vpc
Id 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.
- 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}
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - 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.
- owner
Id String - The ID of the AWS account that owns the internet gateway.
- 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}
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vpc
Id 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.
Try AWS Native preview for resources not in the classic version.