Skip to content

Commit

Permalink
omit /projects from compute basepath (GoogleCloudPlatform#5092)
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottSuarez authored and khajduczenia committed Oct 12, 2021
1 parent e5acfcc commit 3cc12cc
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions mmv1/third_party/terraform/utils/config.go.erb
Original file line number Diff line number Diff line change
Expand Up @@ -349,29 +349,27 @@ func (c *Config) getTokenSource(clientScopes []string, initialCredentialsOnly bo
// of those "projects" as well. You can find out if this is required by looking at
// the basePath value in the client library file.
func (c *Config) NewComputeClient(userAgent string) *compute.Service {
computeClientBasePath := c.ComputeBasePath + "projects/"
log.Printf("[INFO] Instantiating GCE client for path %s", computeClientBasePath)
log.Printf("[INFO] Instantiating GCE client for path %s", c.ComputeBasePath)
clientCompute, err := compute.NewService(c.context, option.WithHTTPClient(c.client))
if err != nil {
log.Printf("[WARN] Error creating client compute: %s", err)
return nil
}
clientCompute.UserAgent = userAgent
clientCompute.BasePath = computeClientBasePath
clientCompute.BasePath = c.ComputeBasePath

return clientCompute
}

func (c *Config) NewComputeBetaClient(userAgent string) *computeBeta.Service {
computeBetaClientBasePath := c.ComputeBetaBasePath + "projects/"
log.Printf("[INFO] Instantiating GCE Beta client for path %s", computeBetaClientBasePath)
log.Printf("[INFO] Instantiating GCE Beta client for path %s", c.ComputeBetaBasePath)
clientComputeBeta, err := computeBeta.NewService(c.context, option.WithHTTPClient(c.client))
if err != nil {
log.Printf("[WARN] Error creating client compute beta: %s", err)
return nil
}
clientComputeBeta.UserAgent = userAgent
clientComputeBeta.BasePath = computeBetaClientBasePath
clientComputeBeta.BasePath = c.ComputeBetaBasePath

return clientComputeBeta
}
Expand Down

0 comments on commit 3cc12cc

Please sign in to comment.