DefaultSubnetArgs

data class DefaultSubnetArgs(val assignIpv6AddressOnCreation: Output<Boolean>? = null, val availabilityZone: Output<String>? = null, val customerOwnedIpv4Pool: Output<String>? = null, val enableDns64: Output<Boolean>? = null, val enableResourceNameDnsARecordOnLaunch: Output<Boolean>? = null, val enableResourceNameDnsAaaaRecordOnLaunch: Output<Boolean>? = null, val forceDestroy: Output<Boolean>? = null, val ipv6CidrBlock: Output<String>? = null, val ipv6Native: Output<Boolean>? = null, val mapCustomerOwnedIpOnLaunch: Output<Boolean>? = null, val mapPublicIpOnLaunch: Output<Boolean>? = null, val privateDnsHostnameTypeOnLaunch: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<DefaultSubnetArgs>

Provides a resource to manage a default subnet 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

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());
}
}

Import

Subnets can be imported using the subnet id, e.g.,

$ pulumi import aws:ec2/defaultSubnet:DefaultSubnet public_subnet subnet-9d4a7b6c

Constructors

Link copied to clipboard
constructor(assignIpv6AddressOnCreation: Output<Boolean>? = null, availabilityZone: Output<String>? = null, customerOwnedIpv4Pool: Output<String>? = null, enableDns64: Output<Boolean>? = null, enableResourceNameDnsARecordOnLaunch: Output<Boolean>? = null, enableResourceNameDnsAaaaRecordOnLaunch: Output<Boolean>? = null, forceDestroy: Output<Boolean>? = null, ipv6CidrBlock: Output<String>? = null, ipv6Native: Output<Boolean>? = null, mapCustomerOwnedIpOnLaunch: Output<Boolean>? = null, mapPublicIpOnLaunch: Output<Boolean>? = null, privateDnsHostnameTypeOnLaunch: Output<String>? = null, tags: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val availabilityZone: Output<String>? = null

is required

Link copied to clipboard
val customerOwnedIpv4Pool: Output<String>? = null
Link copied to clipboard
val enableDns64: Output<Boolean>? = null
Link copied to clipboard
val forceDestroy: Output<Boolean>? = null

Whether destroying the resource deletes the default subnet. Default: false

Link copied to clipboard
val ipv6CidrBlock: Output<String>? = null
Link copied to clipboard
val ipv6Native: Output<Boolean>? = null
Link copied to clipboard
val mapCustomerOwnedIpOnLaunch: Output<Boolean>? = null
Link copied to clipboard
val mapPublicIpOnLaunch: Output<Boolean>? = null
Link copied to clipboard
Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Functions

Link copied to clipboard
open override fun toJava(): DefaultSubnetArgs