This message was deleted.
# golang
s
This message was deleted.
1
👍 1
g
Do you have custom
aws:
configuration values in your stack configuration? I believe this can occur when you've set "custom" configuration values under the
aws:
namespace which is reserved for the default provider itself.
👍 1
In other words, if you were to do
pulumi set aws:myCustomConfig asdf
, you would get that error message because
myCustomConfig
is not a valid configuration property on the
aws.Provider
.
👍 1
m
Yes. We did it like this. We have aws: namespace and put there every our configuration parameter. Do you have a link or some document where it's written that we can't do it or some architecture link?
g
Our general config documentation is at https://www.pulumi.com/docs/intro/concepts/config/#configuration-keys, but I'm not sure if we explicitly explain it in those terms.
👍 1
For your own custom configuration you can just use
pulumi config set myCustomConfig asdf
without the
aws:
prefix and use the configuration values that way.
👍 1