I have trouble understanding differences betweent ...
# esc
m
I have trouble understanding differences betweent :
pulumiConfig:
netlify:token: ${netlify.token}
netlify:defaultTeamSlug: ${netlify.teamSlug}
and :
pulumiConfig:
netlify:
token: ${netlify.token}
defaultTeamSlug: ${netlify.teamSlug}
There are not the same ? I would prefer to use the second one, but the provider do as if there is no token when using it, with the first one it works fine.
d
They're slightly different; the configuration setting has the key
netlify:token
but the latter example sets the meaningless key
netlify
. The token/slug keys aren't nested, they're top-level.
m
Thanks for the explanation