mirror of https://github.com/pulumi/pulumi.git
9 lines
230 B
TypeScript
9 lines
230 B
TypeScript
|
import * as pulumi from "@pulumi/pulumi";
|
||
|
import * as unknown from "@pulumi/unknown";
|
||
|
|
||
|
const data = unknown.index.getData({
|
||
|
input: "hello",
|
||
|
});
|
||
|
const values = unknown.eks.moduleValues({});
|
||
|
export const content = data.content;
|