https://pulumi.com logo
c

colossal-ram-89482

01/29/2020, 12:31 AM
Other than experimentation, how can I tell which resources are auto-named by default? (Repost due to no response last time around.)
g

gentle-diamond-70147

01/29/2020, 1:09 AM
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

colossal-ram-89482

01/29/2020, 10:55 AM
Ok, thank you!