monitoring is automatically enabled when monitoring.writer is enabled (#177)

This commit is contained in:
Andras Gyömrey
2020-11-25 17:32:53 +01:00
committed by GitHub
parent b2d8052b0e
commit c8958c548f
2 changed files with 2 additions and 0 deletions

View File

@@ -33,6 +33,7 @@ locals {
: [ : [
"https://www.googleapis.com/auth/devstorage.read_only", "https://www.googleapis.com/auth/devstorage.read_only",
"https://www.googleapis.com/auth/logging.write", "https://www.googleapis.com/auth/logging.write",
"https://www.googleapis.com/auth/monitoring",
"https://www.googleapis.com/auth/monitoring.write" "https://www.googleapis.com/auth/monitoring.write"
] ]
) )

View File

@@ -22,6 +22,7 @@ OAUTH_SCOPE = ['https://www.googleapis.com/auth/cloud-platform']
OAUTH_SCOPES = [ OAUTH_SCOPES = [
'https://www.googleapis.com/auth/devstorage.read_only', 'https://www.googleapis.com/auth/devstorage.read_only',
'https://www.googleapis.com/auth/logging.write', 'https://www.googleapis.com/auth/logging.write',
'https://www.googleapis.com/auth/monitoring',
'https://www.googleapis.com/auth/monitoring.write'] 'https://www.googleapis.com/auth/monitoring.write']