pulumi/tests/integration/protect_resources/step1/index.ts

7 lines
212 B
TypeScript
Raw Normal View History

// Copyright 2016-2018, Pulumi Corporation. All rights reserved.
import { Resource } from "./resource";
// Allocate a resource and protect it:
let a = new Resource("eternal", { state: 1 }, { protect: true });