This message was deleted.
# golang
s
This message was deleted.
b
what would you like to happen?
f
@billowy-army-68599 I would like to name the subnets, NATs, EIPs in a way that includes the AZ in the name.
b
you would need to retrieve them using a getter function in that case
f
Ohh you mean retrieve and tag? I did not know that could be done. @billowy-army-68599
@billowy-army-68599 I tried using a getter, but I was not able to find a way to modify the said resource after fetching the state. I don't see a way to set/modify the already provisioned resource. Please correct me if I am missing something.
b
If you want to modify and existing resource you haven't provisioned with Pulumi, you'll need to import it first
You can't just patch a resource that exists
It needs to be fully managed by Pulumi
f
Got it. Thanks!