Default Subnet Args
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
Using pulumi import
, import subnets using the subnet id
. For example:
$ pulumi import aws:ec2/defaultSubnet:DefaultSubnet public_subnet subnet-9d4a7b6c