https://pulumi.com logo
#getting-started
Title
# getting-started
s

square-tiger-5809

01/10/2023, 4:39 PM
In Python SDK, I can do
Copy code
config = 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
Copy code
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?