chilly-tailor-89151
06/01/2023, 12:44 PMimport * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
// Delete the default VPC
const defaultVpc = new aws.ec2.DefaultVpc("defaultVpc", {
forceDestroy: true,
});
and run pulumi up
, the result is nothing happen.
try to run pulumi destroy
throw and error dependencies
what I do wrong please?flaky-finland-22550
06/01/2023, 1:38 PMchilly-tailor-89151
06/01/2023, 1:40 PMflaky-finland-22550
06/01/2023, 1:42 PMchilly-tailor-89151
06/01/2023, 1:45 PMflaky-finland-22550
06/01/2023, 1:52 PMchilly-tailor-89151
06/01/2023, 1:55 PMPulumi Ai
, tell you when you being and forceDestroy equal to true should deleted by pulumi up