Has anyone had an issue with setting up configurat...
# general
b
Has anyone had an issue with setting up configuration keys? I add a single config using
pulumi config set
and then I get mysterious errors liek this with random resources that have no changes:
Copy code
error: could not validate provider configuration: 1 error occurred:
        * Invalid or unknown key
b
the error isn't super clear unfortunately, you need to elimate the config keys one of one, there's probably a typo in there
b
So I know the exact key that has an issue, I remove it with pulumi config rm and everythign is fine, but whenever I add it back I get this
b
what's the key?
b
Copy code
config:
  gcp:domain: <http://test.example.com|test.example.com>
  gcp:project: dazzling-project
  pulumi:template: gcp-typescript
this is my entire config, the domain is giving me the issue
b
@blue-leather-96987 there's no domain option for a gcp provider..
what are you trying to do?
b
Oh I see the issue. I was hoping to use the config for a custom field
b
if that's the case, prefix with the name of your project, not
gcp:
b
got it, thank you
I didn't realize there was reserved config namespaces, my bad