Other than experimentation, how can I tell which r...
# general
c
Other than experimentation, how can I tell which resources are auto-named by default? (Repost due to no response last time around.)
g
Unfortunately the definitive way to know is to check the code. For example, the
aws.route53.Record
is not auto-named. https://github.com/pulumi/pulumi-aws/blob/master/resources.go#L1719-L1721
But in general the vast majority are auto-named.
You can override this by specifying your own name for all resources.
c
Ok, thank you!