mirror of https://github.com/pulumi/pulumi.git
10 lines
298 B
TypeScript
10 lines
298 B
TypeScript
// Copyright 2016-2018, Pulumi Corporation. All rights reserved.
|
|
|
|
import { Resource } from "./resource";
|
|
|
|
// Base depends on nothing.
|
|
const a = new Resource("base", { uniqueKey: 1, state: 99 });
|
|
|
|
// Dependent depends on Base with state 99.
|
|
const b = new Resource("dependent", { state: a.state });
|