docs
docs copied to clipboard
VpcLink.target is not an array
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