gifted-island-55702
01/11/2019, 1:22 PMstocky-spoon-28903
01/11/2019, 3:15 PM$ cat cluster.ts
import * as aws from "@pulumi/aws"
export const myCluster = new aws.ecs.Cluster("name", { /* opts */ });
$ cat index.ts
import * as cluster from "./cluster";
/*
or for binding to particular names:
import { myCluster } from "./cluster";
*/
gcp-ts-gke
example, here: https://github.com/pulumi/examples/tree/master/gcp-ts-gkegifted-island-55702
01/11/2019, 5:22 PM