Hi, I had a question about `pulumi` with `aws-ssm...
# aws
f
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
n
you should be able to store the ARN of said resource in parameter store and pick it up from there. the hash is to know about what stack you’re working with i believe.