Hi, currently attempting to get environment refere...
# getting-started
m
Hi, currently attempting to get environment references working properly for an azure stack. From my understanding of the documentation, referencing as below should pull in the config at run time - but I get a missing property error. "error: azure-nativeresourcesResourceGroup resource 'resource-group' has a problem: missing required property 'location'. Either set it explicitly or configure it with 'pulumi config set azure-native:location value'." Config is defined in pulumi cloud as follows. Real variable values omitted.
Copy code
{
  "azure-native": {
    "location": "myloc"
  },
  "azurePoc": {
    "errorDocument": "myerror.html"
  },
  "environmentVariables": {
    "EXAMPLE_SETTING": "ENV"
  },
  "pulumiConfig": {
    "azure-native:location": "myloc",
    "azurePoc:errorDocument": "myerror.html",
    "azurePoc:indexDocument": "myindex.html",
    "azurePoc:path": "./www",
    "pulumi:template": "static-website-azure-python"
  }
}
Slack Conversation