Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
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.DefaultSubnetArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* Provides a resource to manage a [default subnet](http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/default-vpc.html#default-vpc-basics) in the current region.
* **This is an advanced resource** and has special caveats to be aware of when using it. Please read this document in its entirety before using this resource.
* The `aws.ec2.DefaultSubnet` resource behaves differently from normal resources in that if a default subnet exists in the specified Availability Zone, this provider does not _create_ this resource, but instead "adopts" it into management.
* If no default subnet exists, this provider creates a new default subnet.
* By default, `pulumi destroy` does not delete the default subnet but does remove the resource from the state.
* Set the `force_destroy` argument to `true` to delete the default subnet.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* const defaultAz1 = new aws.ec2.DefaultSubnet("default_az1", {
* availabilityZone: "us-west-2a",
* tags: {
* Name: "Default subnet for us-west-2a",
* },
* });
* ```
* ```python
* import pulumi
* import pulumi_aws as aws
* default_az1 = aws.ec2.DefaultSubnet("default_az1",
* availability_zone="us-west-2a",
* tags={
* "Name": "Default subnet for us-west-2a",
* })
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Aws = Pulumi.Aws;
* return await Deployment.RunAsync(() =>
* {
* var defaultAz1 = new Aws.Ec2.DefaultSubnet("default_az1", new()
* {
* AvailabilityZone = "us-west-2a",
* Tags =
* {
* { "Name", "Default subnet for us-west-2a" },
* },
* });
* });
* ```
* ```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 {
* _, err := ec2.NewDefaultSubnet(ctx, "default_az1", &ec2.DefaultSubnetArgs{
* AvailabilityZone: pulumi.String("us-west-2a"),
* Tags: pulumi.StringMap{
* "Name": pulumi.String("Default subnet for us-west-2a"),
* },
* })
* 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.DefaultSubnet;
* import com.pulumi.aws.ec2.DefaultSubnetArgs;
* 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 defaultAz1 = new DefaultSubnet("defaultAz1", DefaultSubnetArgs.builder()
* .availabilityZone("us-west-2a")
* .tags(Map.of("Name", "Default subnet for us-west-2a"))
* .build());
* }
* }
* ```
* ```yaml
* resources:
* defaultAz1:
* type: aws:ec2:DefaultSubnet
* name: default_az1
* properties:
* availabilityZone: us-west-2a
* tags:
* Name: Default subnet for us-west-2a
* ```
*
* ## Import
* Using `pulumi import`, import subnets using the subnet `id`. For example:
* ```sh
* $ pulumi import aws:ec2/defaultSubnet:DefaultSubnet public_subnet subnet-9d4a7b6c
* ```
* @property assignIpv6AddressOnCreation
* @property availabilityZone is required
* * The `availability_zone_id`, `cidr_block` and `vpc_id` arguments become computed attributes
* * The default value for `map_public_ip_on_launch` is `true`
* This resource supports the following additional arguments:
* @property customerOwnedIpv4Pool
* @property enableDns64
* @property enableResourceNameDnsARecordOnLaunch
* @property enableResourceNameDnsAaaaRecordOnLaunch
* @property forceDestroy Whether destroying the resource deletes the default subnet. Default: `false`
* @property ipv6CidrBlock
* @property ipv6Native
* @property mapCustomerOwnedIpOnLaunch
* @property mapPublicIpOnLaunch
* @property privateDnsHostnameTypeOnLaunch
* @property tags
*/
public data class DefaultSubnetArgs(
public val assignIpv6AddressOnCreation: Output? = null,
public val availabilityZone: Output? = null,
public val customerOwnedIpv4Pool: Output? = null,
public val enableDns64: Output? = null,
public val enableResourceNameDnsARecordOnLaunch: Output? = null,
public val enableResourceNameDnsAaaaRecordOnLaunch: Output? = null,
public val forceDestroy: Output? = null,
public val ipv6CidrBlock: Output? = null,
public val ipv6Native: Output? = null,
public val mapCustomerOwnedIpOnLaunch: Output? = null,
public val mapPublicIpOnLaunch: Output? = null,
public val privateDnsHostnameTypeOnLaunch: Output? = null,
public val tags: Output