This message was deleted.
# general
s
This message was deleted.
c
No, we do not currently have a search capability. (But I can confirm it is on our backlog!) Is there a particular scenario you are trying to do here? There might be some way to automate your query using the Pulumi REST API (undocumented, but I can help you get set up).
m
At some point a change we made to our instance class was reverted, and I was hoping to find what commit was responsible as we didn’t notice for a few days.
The thing that made this change special, is that the modification gets queued up for the next rds instance maintenance window, so it was undetected for a while.
c
@millions-furniture-75402 gotcha. Depending on how active your stack has been, there is an undocumented feature of the Pulumi Console that might help you out. If you navigate to the particular resource in the UI, you will arrive at a link like: https://app.pulumi.com/pulumi/static-website/static-website-chris/resources/latest/urn:pulumi:static-website-chris::static-website::aws:s3/bucket:Bucket::requestLogs Notice how part of the URL is
/resources/latest/<resource-urn>
. You can change “latest” to whatever the stack version is. So for example, if the latest stack version is “104" then you could change the URL to be
/resources/100/<resource-urn>
and it would load the resources for the 100th update. It would be a little tedious, but you could use that to manually use a git-bisect like approach to find the particular stack update that changed the particular resource property
m
Thanks for the tip, pretty clever.