mysterious-glass-98830
06/23/2022, 5:27 PMbillowy-army-68599
mysterious-glass-98830
06/23/2022, 5:29 PMconst bucket = new aws.s3.Bucket("test001", {
acl: "private",
tags: {
Environment: "Dev",
Name: "My bucket",
},
});
const test = new aws.s3.BucketNotification("bucketNotification", {
bucket: bucket.id,
eventbridge : true,
})billowy-army-68599
eventbridge
and :
is that expected?mysterious-glass-98830
06/23/2022, 5:41 PMbillowy-army-68599
mysterious-glass-98830
06/23/2022, 5:45 PMbillowy-army-68599
export const bucketName = bucket.bucket
and then do:
aws s3api get-bucket-notification-configuration --bucket $(pulumi stack output bucketName)
What gets returned?mysterious-glass-98830
07/22/2022, 10:18 PM