https://pulumi.com logo
Title
f

few-easter-31331

05/06/2022, 5:25 PM
Hi, I had a question about
pulumi
with
aws-ssm
. I am creating the resource for the Parameter store in SSM but pulumi keeps adding extra unique identification number to the name of the resource and hence changes the name of the
key
in the Parameter store. How can I get rid of the extra (unique id attached to each resource's name)? eg. my key would be
"/abc/def"
but pulumi adds this resource instead
"/abc/def-aj39872"
, so it becomes impossible to get the key-value pair from the parameter store
p

polite-napkin-90098

05/06/2022, 5:35 PM
https://www.pulumi.com/docs/troubleshooting/faq/#why-do-resource-names-have-random-hex-character-suffixes There's a link there on how to disable auto-naming which should help.
f

few-easter-31331

05/06/2022, 5:44 PM
Thanks a lot 🙌