brief-school-94535
03/22/2019, 3:15 PMconf = pulumi.Config(‘gke’)
stack_name = conf.require(‘name’)
No problem but
gcp_project = conf.require(‘gcp:project’)
gcp_zone = conf.require(‘gcp:zone’)
Error with pulumi:pulumi:Stack (gke-k8s):
error: Missing required configuration variable ‘gke:gcp:project’
please set a value using the command pulumi config set gke:gcp:project <value>
error: an unhandled error occurred: Program exited with non-zero exit code: 1
The config values are set in my Pulumi.k8s.yaml file. any advise?microscopic-pilot-97530
gcp_conf = pulumi.Config('gcp')
gcp_project = gcp_conf.require('project')
gcp_zone = gcp_conf.require('zone')
brief-school-94535
03/22/2019, 3:25 PMmicroscopic-pilot-97530
brief-school-94535
03/22/2019, 3:27 PMmicroscopic-pilot-97530