pulumi/tests/testdata/codegen/traverse-union-repro-pp/nodejs/traverse-union-repro.ts

10 lines
262 B
TypeScript

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const test = new aws.fsx.OpenZfsFileSystem("test", {
storageCapacity: 64,
subnetIds: [aws_subnet.test1.id],
deploymentType: "SINGLE_AZ_1",
throughputCapacity: 64,
});