square-tiger-5809
01/10/2023, 4:39 PMconfig = pulumi.Config();
location = config.require('location')
here is my config
appnamelocation "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 'appnamegcpproject'
please set a value using the command `pulumi config set appnamegcpproject <value>
Is there a way to reference GCP provider project_id without duplicating it in my pulumi config?