Commit a4ef4792 by Erik Sundell Committed by Daniel Lee

Stackdriver: Add scope for google resource manager

parent f6c18cf7
...@@ -425,7 +425,7 @@ func (proxy *DataSourceProxy) getJwtAccessToken(data templateData) (string, erro ...@@ -425,7 +425,7 @@ func (proxy *DataSourceProxy) getJwtAccessToken(data templateData) (string, erro
} }
conf.PrivateKey = []byte(interpolatedVal) conf.PrivateKey = []byte(interpolatedVal)
} }
conf.Scopes = []string{"https://www.googleapis.com/auth/monitoring.read"} conf.Scopes = []string{"https://www.googleapis.com/auth/monitoring.read", "https://www.googleapis.com/auth/cloudplatformprojects.readonly"}
conf.TokenURL = "https://oauth2.googleapis.com/token" conf.TokenURL = "https://oauth2.googleapis.com/token"
ctx := context.Background() ctx := context.Background()
...@@ -434,6 +434,7 @@ func (proxy *DataSourceProxy) getJwtAccessToken(data templateData) (string, erro ...@@ -434,6 +434,7 @@ func (proxy *DataSourceProxy) getJwtAccessToken(data templateData) (string, erro
if err != nil { if err != nil {
return "", err return "", err
} }
logger.Info("interpolatedVal", "token.AccessToken", token.AccessToken)
return token.AccessToken, nil return token.AccessToken, nil
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment