How do I create/update a resource without a unique...
# typescript
o
How do I create/update a resource without a unique suffix? I want to create a DNS A-record for my external URL. If the IP changes I want to either update or regen the record. Eg. create myarecord so that myarecord.myservice.com is a working URL. By default Pulumi created myarecord230ed05.
l
Add an explicit
name
propoerty.
o
Thx. Works as advertised!