EgressOnlyInternetGateway
[IPv6 only] Creates an egress-only Internet gateway for your VPC. An egress-only Internet gateway is used to enable outbound communication over IPv6 from instances in your VPC to the Internet, and prevents hosts outside of your VPC from initiating an IPv6 connection with your instance.
Example Usage
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var exampleVpc = new Aws.Ec2.Vpc("exampleVpc", new Aws.Ec2.VpcArgs
{
AssignGeneratedIpv6CidrBlock = true,
CidrBlock = "10.1.0.0/16",
});
var exampleEgressOnlyInternetGateway = new Aws.Ec2.EgressOnlyInternetGateway("exampleEgressOnlyInternetGateway", new Aws.Ec2.EgressOnlyInternetGatewayArgs
{
Tags =
{
{ "Name", "main" },
},
VpcId = exampleVpc.Id,
});
}
}
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v2/go/aws/ec2"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleVpc, err := ec2.NewVpc(ctx, "exampleVpc", &ec2.VpcArgs{
AssignGeneratedIpv6CidrBlock: pulumi.Bool(true),
CidrBlock: pulumi.String("10.1.0.0/16"),
})
if err != nil {
return err
}
_, err = ec2.NewEgressOnlyInternetGateway(ctx, "exampleEgressOnlyInternetGateway", &ec2.EgressOnlyInternetGatewayArgs{
Tags: pulumi.StringMap{
"Name": pulumi.String("main"),
},
VpcId: exampleVpc.ID(),
})
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_aws as aws
example_vpc = aws.ec2.Vpc("exampleVpc",
assign_generated_ipv6_cidr_block=True,
cidr_block="10.1.0.0/16")
example_egress_only_internet_gateway = aws.ec2.EgressOnlyInternetGateway("exampleEgressOnlyInternetGateway",
tags={
"Name": "main",
},
vpc_id=example_vpc.id)import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const exampleVpc = new aws.ec2.Vpc("example", {
assignGeneratedIpv6CidrBlock: true,
cidrBlock: "10.1.0.0/16",
});
const exampleEgressOnlyInternetGateway = new aws.ec2.EgressOnlyInternetGateway("example", {
tags: {
Name: "main",
},
vpcId: exampleVpc.id,
});Create a EgressOnlyInternetGateway Resource
new EgressOnlyInternetGateway(name: string, args: EgressOnlyInternetGatewayArgs, opts?: CustomResourceOptions);def EgressOnlyInternetGateway(resource_name, opts=None, tags=None, vpc_id=None, __props__=None);func NewEgressOnlyInternetGateway(ctx *Context, name string, args EgressOnlyInternetGatewayArgs, opts ...ResourceOption) (*EgressOnlyInternetGateway, error)public EgressOnlyInternetGateway(string name, EgressOnlyInternetGatewayArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args EgressOnlyInternetGatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args EgressOnlyInternetGatewayArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EgressOnlyInternetGatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
EgressOnlyInternetGateway Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The EgressOnlyInternetGateway resource accepts the following input properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the EgressOnlyInternetGateway resource produces the following output properties:
Look up an Existing EgressOnlyInternetGateway Resource
Get an existing EgressOnlyInternetGateway 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?: EgressOnlyInternetGatewayState, opts?: CustomResourceOptions): EgressOnlyInternetGatewaystatic get(resource_name, id, opts=None, tags=None, vpc_id=None, __props__=None);func GetEgressOnlyInternetGateway(ctx *Context, name string, id IDInput, state *EgressOnlyInternetGatewayState, opts ...ResourceOption) (*EgressOnlyInternetGateway, error)public static EgressOnlyInternetGateway Get(string name, Input<string> id, EgressOnlyInternetGatewayState? state, CustomResourceOptions? opts = null)- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
The following state arguments are supported:
Package Details
- Repository
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.