pulumi / pulumi-cloud-requests

Welcome to the public issue tracker for Pulumi Cloud (app.pulumi.com)! Feature requests and bug reports welcome!
11 stars 4 forks source link

In the resources page show resources that are dependent on the selected resource #399

Open pierskarsenbarg opened 1 month ago

pierskarsenbarg commented 1 month ago

If I create an S3 bucket and a bucket object resource that depends on it:

const bucket = new aws.s3.Bucket("pk-bucket");

const bucketObject = new aws.s3.BucketObject("file", {
    key: "file.txt",
    bucket: bucket
})

on the resource page ({org}/{project}/{stack}/resources/latest/{urn}) for the bucket object resource I can see that it depends on the s3 bucket:

image

but the same for the other way around (what resources depend on the s3 bucket in my example) would be useful

Affected feature