This message was deleted.
# general
s
This message was deleted.
d
It looks like you'll need to wait for the v6 release: https://github.com/pulumi/pulumi-aws/issues/2539
b
thanks Anthony.
This is working with the v6 release now 🎉
Copy code
new aws.ec2.VpcEndpoint('myendpoint', {
    vpcId: vpc.vpcId,
    serviceName: `com.amazonaws.ap-southeast-2.s3`,
    vpcEndpointType: "Interface",
    securityGroupIds: [epsg.id],
    subnetIds: vpc.privateSubnetIds,
    privateDnsEnabled: true,
    dnsOptions: {
        dnsRecordIpType: 'ipv4',
        privateDnsOnlyForInboundResolverEndpoint: false
    },
  })
👍 1