DefaultSubnet

class DefaultSubnet : KotlinCustomResource

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

Properties

Link copied to clipboard
val arn: Output<String>
Link copied to clipboard
Link copied to clipboard

is required

Link copied to clipboard

The AZ ID of the subnet

Link copied to clipboard
val cidrBlock: Output<String>

The IPv4 CIDR block assigned to the subnet

Link copied to clipboard
Link copied to clipboard
val enableDns64: Output<Boolean>?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val forceDestroy: Output<Boolean>?

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

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val ipv6CidrBlock: Output<String>
Link copied to clipboard
Link copied to clipboard
val ipv6Native: Output<Boolean>?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val outpostArn: Output<String>
Link copied to clipboard
val ownerId: Output<String>
Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val tags: Output<Map<String, String>>?
Link copied to clipboard
val tagsAll: Output<Map<String, String>>
Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val vpcId: Output<String>

The ID of the VPC the subnet is in