Channels
welcome
pulumi-cdk
cloudengineering
yaml
blog-posts
localstack
pulumi-ai
package-authoring
general
pulumiup-booth-support
oracle-cloud-infrastructure
learn-pulumi-events
linen
registry
built-with-pulumi
pulumi-cloud
contribex
testingtesting321
hacktoberfest
pulumi-crosscode
content-share
finops
multi-language-hackathon
office-hours
workshops
gitlab
pulumi-kubernetes-operator
jobs
pulumi-deployments
dotnet
aws
golang
announcements
java
pulumiverse
python
install
getting-started
cloudengineering-support
testingtesting123
hackathon-03-19-2020
typescript
google-cloud
contribute
azure
kubernetes
docs
automation-api
status
Powered by
#general
Title
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!
Post