2022-01-31 20:48:32 +00:00
|
|
|
import * as pulumi from "@pulumi/pulumi";
|
2022-08-29 18:38:41 +00:00
|
|
|
import * as other from "@third-party/pulumi-other";
|
2022-01-31 20:48:32 +00:00
|
|
|
|
|
|
|
const Other = new other.Thing("Other", {idea: "Support Third Party"});
|
|
|
|
const Question = new other.module.Object("Question", {answer: 42});
|
2022-09-19 23:40:31 +00:00
|
|
|
const Question2 = new other.module.sub.Object("Question2", {answer: 24});
|
2022-08-30 00:16:22 +00:00
|
|
|
const Provider = new other.Provider("Provider", {objectProp: {
|
|
|
|
prop1: "foo",
|
|
|
|
prop2: "bar",
|
|
|
|
prop3: "fizz",
|
|
|
|
}});
|