docs icon indicating copy to clipboard operation
docs copied to clipboard

VpcLink.target is not an array

Open pierskarsenbarg opened this issue 4 years ago • 0 comments

File: docs/reference/pkg/aws/apigateway/vpclink.md

In the docs it's shown as

const exampleVpcLink = new aws.apigateway.VpcLink("exampleVpcLink", {
    description: "example description",
    targetArn: [exampleLoadBalancer.arn],
});

but should be

const exampleVpcLink = new aws.apigateway.VpcLink("exampleVpcLink", {
    description: "example description",
    targetArn: exampleLoadBalancer.arn,
});

https://www.pulumi.com/docs/reference/pkg/aws/apigateway/vpclink/#inputs

pierskarsenbarg avatar Feb 11 '21 11:02 pierskarsenbarg