This message was deleted.
# typescript
s
This message was deleted.
s
This is due to a relatively recent change in the AWS API. See this thread for an example of how to make this work: https://pulumi-community.slack.com/archives/C84L4E3N1/p1686357651078149 Let us know if you continue to have problems!
e
I have actually added this
Copy code
const publicMetricsBlock = new aws.s3.BucketPublicAccessBlock(
  CHPOCS3BucketBlock,
  {
    bucket: ClickHousePOC.id,
    blockPublicAcls: false,
    blockPublicPolicy: true,
    ignorePublicAcls: true,
    restrictPublicBuckets: true
  },
  { parent: ClickHousePOC }
);
to reference my bucket, still doesn't work