This message was deleted.
# azure
s
This message was deleted.
m
Hi @adventurous-mechanic-24805, it depends on the value of
resourceGroupName
, so on the values of
customerShort
,
projectShort
, and
env
. Somehow the resulting name is invalid. Does
env
maybe end in a
.
?
a
You maybe right. When you mention the
env
, does it take the pulumi stack environment or the
env
from
Pulumi.shared.shared.yaml
because the environment is
shared.shared
, but I want to reference it from the
Pulumi.shared.shared.yaml
whose value is
shared
m
I’m not sure where
env
is from. I’m not super familiar with Pulumi yaml and it’s actually not mentioned on https://www.pulumi.com/docs/reference/yaml/.
a
I figured out the problem. It was this part:
Copy code
${namePrefix}-${env}
I resolved it by replacing
config
with
variables
because I am reusing the variables. But, thank you anyways
👍 1