mirror of https://github.com/pulumi/pulumi.git
10 lines
277 B
TypeScript
10 lines
277 B
TypeScript
|
// Copyright 2016-2018, Pulumi Corporation. All rights reserved.
|
||
|
|
||
|
import * as pulumi from "@pulumi/pulumi";
|
||
|
import { Resource } from "./resource";
|
||
|
|
||
|
// resource "not-doomed" is created successfully.
|
||
|
const a = new Resource("not-doomed", 5);
|
||
|
|
||
|
// "a" should be in the checkpoint.
|