com.pulumi.aws.ec2.kotlin.EgressOnlyInternetGatewayArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.ec2.kotlin
import com.pulumi.aws.ec2.EgressOnlyInternetGatewayArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* [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
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* const example = new aws.ec2.Vpc("example", {
* cidrBlock: "10.1.0.0/16",
* assignGeneratedIpv6CidrBlock: true,
* });
* const exampleEgressOnlyInternetGateway = new aws.ec2.EgressOnlyInternetGateway("example", {
* vpcId: example.id,
* tags: {
* Name: "main",
* },
* });
* ```
* ```python
* import pulumi
* import pulumi_aws as aws
* example = aws.ec2.Vpc("example",
* cidr_block="10.1.0.0/16",
* assign_generated_ipv6_cidr_block=True)
* example_egress_only_internet_gateway = aws.ec2.EgressOnlyInternetGateway("example",
* vpc_id=example.id,
* tags={
* "Name": "main",
* })
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Aws = Pulumi.Aws;
* return await Deployment.RunAsync(() =>
* {
* var example = new Aws.Ec2.Vpc("example", new()
* {
* CidrBlock = "10.1.0.0/16",
* AssignGeneratedIpv6CidrBlock = true,
* });
* var exampleEgressOnlyInternetGateway = new Aws.Ec2.EgressOnlyInternetGateway("example", new()
* {
* VpcId = example.Id,
* Tags =
* {
* { "Name", "main" },
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* example, err := ec2.NewVpc(ctx, "example", &ec2.VpcArgs{
* CidrBlock: pulumi.String("10.1.0.0/16"),
* AssignGeneratedIpv6CidrBlock: pulumi.Bool(true),
* })
* if err != nil {
* return err
* }
* _, err = ec2.NewEgressOnlyInternetGateway(ctx, "example", &ec2.EgressOnlyInternetGatewayArgs{
* VpcId: example.ID(),
* Tags: pulumi.StringMap{
* "Name": pulumi.String("main"),
* },
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.aws.ec2.Vpc;
* import com.pulumi.aws.ec2.VpcArgs;
* import com.pulumi.aws.ec2.EgressOnlyInternetGateway;
* import com.pulumi.aws.ec2.EgressOnlyInternetGatewayArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
* public static void stack(Context ctx) {
* var example = new Vpc("example", VpcArgs.builder()
* .cidrBlock("10.1.0.0/16")
* .assignGeneratedIpv6CidrBlock(true)
* .build());
* var exampleEgressOnlyInternetGateway = new EgressOnlyInternetGateway("exampleEgressOnlyInternetGateway", EgressOnlyInternetGatewayArgs.builder()
* .vpcId(example.id())
* .tags(Map.of("Name", "main"))
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: aws:ec2:Vpc
* properties:
* cidrBlock: 10.1.0.0/16
* assignGeneratedIpv6CidrBlock: true
* exampleEgressOnlyInternetGateway:
* type: aws:ec2:EgressOnlyInternetGateway
* name: example
* properties:
* vpcId: ${example.id}
* tags:
* Name: main
* ```
*
* ## Import
* Using `pulumi import`, import Egress-only Internet gateways using the `id`. For example:
* ```sh
* $ pulumi import aws:ec2/egressOnlyInternetGateway:EgressOnlyInternetGateway example eigw-015e0e244e24dfe8a
* ```
* @property tags 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.
* @property vpcId The VPC ID to create in.
*/
public data class EgressOnlyInternetGatewayArgs(
public val tags: Output
© 2015 - 2024 Weber Informatics LLC | Privacy Policy