Add the monitoring scope to the default scopes for GCE instances created by docker-machine

Signed-off-by: Jeremy Katz <jekatz@google.com>
This commit is contained in:
Jeremy Katz 2016-06-22 10:07:12 -04:00
parent bca4af7130
commit 2692ac9005
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ const (
defaultUser = "docker-user"
defaultMachineType = "n1-standard-1"
defaultImageName = "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20151114"
defaultScopes = "https://www.googleapis.com/auth/devstorage.read_only,https://www.googleapis.com/auth/logging.write"
defaultScopes = "https://www.googleapis.com/auth/devstorage.read_only,https://www.googleapis.com/auth/logging.write,https://www.googleapis.com/auth/monitoring.write"
defaultDiskType = "pd-standard"
defaultDiskSize = 10
)