in cli/pkg/config/config.go [160:178]
func InitWithDefaults() (*Config, error) {
// Read default config
config, err := readConf("samples/default-config.yaml")
if err != nil {
return config, err
}
// Prompt for project ID
projectId, err := ReadProjectId()
if err != nil {
return config, err
}
// populate default conf with user's project ID
config.ClustersProjectID = projectId
config.VpcConfig.VpcProjectID = projectId
return config, nil
}