square-tiger-5809
01/10/2023, 4:39 PMconfig = pulumi.Config();
location = config.require('location')
here is my config
appname:location: "europe-west2"
......
However I cannot get the gcp provider project_id so i can use it in my program
config = pulumi.Config();
test = config.require('gcp:project')
error: Missing required configuration variable 'appname:gcp:project'
please set a value using the command `pulumi config set appname:gcp:project <value>
Is there a way to reference GCP provider project_id without duplicating it in my pulumi config?