pulumi/tests/integration/deleted_with/nodejs/index.ts

8 lines
260 B
TypeScript

// Copyright 2016-2023, Pulumi Corporation. All rights reserved.
import { FailsOnDelete } from "./failsOnDelete"
import { Random } from "./random"
const rand = new Random("random", { length: 10 });
new FailsOnDelete("failsondelete", { deletedWith: rand });