able-flag-79751
05/30/2023, 12:56 PMpulumi destroy -s <my-stack>
), I can’t get them destroyed as it can’t successfully delete those resources that I’ve manually deleted on the aws console. I also tried to delete the stack entirely (pulumi stack rm <my-stack>
), and it’s the same error I’m getting. Please see image below for more info:astonishing-exabyte-93491
05/30/2023, 7:26 PM$ pulumi stack --show-urns | grep <regex-used-to-identify-resource>
# Then having identified the resource URN
$ pulumi state delete '<resource-urn>' # use single quotes to prevent param expansion as resources urns may contain '$'s.
$ pulumi refresh
# or pulumi refresh -t '<resource-urn>'
able-flag-79751
05/30/2023, 7:47 PMastonishing-exabyte-93491
05/30/2023, 7:48 PM#!/bin/bash
$ pulumi destroy -t <parent-resource-urn> --target-dependents
but I’m not confident enough this is your case.