Not sure if I'm running into a bug or not but afte...
# general
p
Not sure if I'm running into a bug or not but after upgrading to the latest version, Pulumi now seems to want any new config settings to be pre-pended by my project name? Is that expected?
Copy code
pulumi:pulumi:Stack (health-directory-dev):
    error: Missing required configuration variable 'health-directory:newrelicAccountId'
    	please set a value using the command `pulumi config set health-directory:newrelicAccountId <value>`
Here is where it's trying to be read (have also tried just
config.require
with the same results):
Copy code
config.requireSecret('newrelicAccountId')
Here is my Pulumi config:
Copy code
> pulumi config
KEY                   VALUE
aws:region            us-west-2
bastionPrivateKey     [secret]
bastionPublicKey      [secret]
dbPassword            [secret]
dbPrivateKey          [secret]
dbPublicKey           [secret]
newRelicAccountId     3112141
slackAlertsUrl        [secret]
newrelic:accountId    3112141
newrelic:adminApiKey  [secret]
newrelic:apiKey       [secret]
No issues with the other values currently, just the new ones for New Relic (using either newRelicAccountId or newrelic:accountId appears to exhibit the same behavior)
Disregard this was user error... 🤦‍♂️
This was a casing issue...
newrelic
vs
newRelic