Authorize the Ops Agent

This guide explains how to install private-key service account credentials on a VM instance to authorize the Ops Agent. Before installing the agent, check that your VM instance has the credentials that the agent needs. The agent must have permission to send information to Logging. Permission is given by using service account credentials that are stored on your VM instance and serve as Application Default Credentials for the agent.

Authorization overview

Authorization refers to the process of determining what permissions an authenticated client has for a set of resources. Google Cloud authorizes the Ops Agent on a Compute Engine VM instance by using application default credentials (ADC).

The Ops Agent supports ADC that authenticate either a VM's attached service account, or a private key from a service account.

  • An attached service account refers to a service account that's specific to a given resource, such as a VM. The service account has its own unique credentials. ADC uses the VM's metadata server to obtain credentials for a service.
  • A private key from a service account refers to a private key used to authorize the key pair on a service account in a project, which lets you create an access token. You use the token to provide an identity so that you can interact with Google Cloud APIs on behalf of the service account.

  • Authorizing agent by using the gcloud CLI is not supported by the Ops Agent. Credentials created by using the gcloud CLI must be revoked to prevent unwanted behavior.

We recommend that you configure the ADC to authenticate an attached service account whenever possible, as the private key requires local storage, and that storage can be compromised. For more information about service account keys, see Best practices for managing service account keys.

Verify your access scopes

Compute Engine VM instances are assigned access scopes when you create them. New Compute Engine VMs have adequate access scopes for the Ops Agent, but old VMs or those on which scopes have been modified might not. For more information about access scopes and service accounts, see Authorization in the Compute Engine documentation.

To verify your access scopes, do the following:

  1. Query the access scopes by running the following command on your Compute Engine instance:
    curl --silent --connect-timeout 1 -f -H "Metadata-Flavor: Google" http://169.254.169.254/computeMetadata/v1/instance/service-accounts/default/scopes
  2. In the command output, if the access scope https://www.googleapis.com/auth/cloud-platform is listed, then you have sufficient authorization.

    If https://www.googleapis.com/auth/cloud-platform isn't listed, then you require two access scopes, one from each of the following "logging" and "monitoring" pairs:

    • https://www.googleapis.com/auth/logging.write or
      https://www.googleapis.com/auth/logging.admin
    • https://www.googleapis.com/auth/monitoring.write or
      https://www.googleapis.com/auth/monitoring.admin

To modify your access scopes, do the following:

  1. In the Google Cloud console, navigate to Compute Engine, or use the following button:
    Go to Compute Engine
  2. If necessary, click the drop-down list of Google Cloud projects and select the name of your project.
  3. Select VM instances from the navigation menu, and then select the Instances tab if necessary.
  4. In the list of VM instances, click on the name of your VM to view the Details page for the VM.
  5. Shut down the VM by clicking  Stop.
  6. After the VM stops, click  Edit.
  7. Locate the Access scopes in the Identity and API access section of the page.
  8. Select Set access for each API, then locate the entries for Stackdriver Logging API and Stackdriver Monitoring API.
  9. Select the Write Only value for the two APIs.
  10. Click Save.
  11. Restart the VM by clicking  Start/Resume.

Use a service account

Authentication refers to the process of determining a client's identity. For authentication, we recommend using a service account, a Google account that is associated with your Google Cloud project, rather than with a specific user. You can use service accounts for authentication regardless of where your code runs: on Compute Engine, App Engine, or on-premise. For more information, see Authentication at Google.

This section describes how to create a new service account and grant it the necessary roles, and how to update an existing service account if it doesn't have the necessary roles.

Create a service account

To create a service account, complete the Creating a service account procedures with the following information:

  • Select the Google Cloud project in which to create the service account.

    • For Compute Engine instances, choose the project in which you created the instance.

  • In the Role drop-down menu, select the following roles:

    • Monitoring > Monitoring Metric Writer.

    • Logging > Logs Writer.

  • If you plan to use private key authentication, then select JSON as the Key type and click Create.

    When you click Create, a file that contains a service account key is downloaded to your local system. For more information, see Create and delete service account keys.

Next, configure your service account and settings based on whether you authorize by using attached service accounts or by using service account private keys.

Verify and modify roles of an existing service account

You can use the Google Cloud console to determine which roles an existing service account has, and to add any necessary roles that are missing:

  1. In the Google Cloud console, navigate to IAM & Admin and select IAM, or use the following button:

    Go to IAM

  2. If necessary, click the drop-down list of Google Cloud projects and select the name of your project.

  3. If you don't see a list of IAM principals (users and service accounts), then select the Permissions tab.

  4. In the View by Principals list, locate the entry for the service account. The Role column lists the roles granted to the service account.

  5. If your service account does not have the necessary roles for the Ops Agent, then use the following steps to add the roles described in Create a service account:

    1. Click  Edit in the entry for the service account.
    2. Click Add Another Role to add any missing roles.
    3. Click Save.

Authorize with an attached service account

To authorize the Ops Agent installed on a VM instance that has an attached service account, do the following:

  1. Grant your service account the least privileged IAM roles possible.

  2. Attach the service account to the resource where your code is running.

  3. Install or restart the agent.

Authorize a service account with a private key

To authorize the Ops Agent by using service account private keys, do the following:

  1. Copy the private-key file to one of the following locations on your VM instance so that the agent can recognize the credentials. You can use any file-copy tool you wish.

    • Linux only: /etc/google/auth/application_default_credentials.json

    • Windows only: C:\ProgramData\Google\Auth\application_default_credentials.json

    • For both Linux and Windows: Any location you store in the variable, GOOGLE_APPLICATION_CREDENTIALS. The variable must be visible to the agent's process.

  2. Create an environment variable to point to the credentials file on your workstation. The following example creates a variable called CREDS:

    CREDS="~/Downloads/PROJECT-NAME-KEY-ID.json"
    
  3. Complete the steps shown in the following table:

    Compute Engine

    On your local system, use the gcloud command-line tool. You can find INSTANCE_NAME and INSTANCE_ZONE in the Google Cloud Console in the VM Instances page:

    REMOTE_USER="$USER"
    INSTANCE="INSTANCE_NAME"
    ZONE="INSTANCE_ZONE"
    gcloud compute scp "$CREDS" "$REMOTE_USER@$INSTANCE:~/temp.json" --zone "$ZONE"
    

    On your Compute Engine instance, run these commands:

    GOOGLE_APPLICATION_CREDENTIALS="/etc/google/auth/application_default_credentials.json"
    sudo mkdir -p /etc/google/auth
    sudo mv "$HOME/temp.json" "$GOOGLE_APPLICATION_CREDENTIALS"
    sudo chown root:root "$GOOGLE_APPLICATION_CREDENTIALS"
    sudo chmod 0400 "$GOOGLE_APPLICATION_CREDENTIALS"
    

    If your credential file is not in the previously listed default location, then in addition to the commands in the preceding examples, ensure that GOOGLE_APPLICATION_CREDENTIALS is defined and visible to the agent process.

  4. Install or restart the agent.

Authorize the Ops Agent

Linux

  1. Edit the following configuration file, or create the file if it doesn't exist:

     /etc/systemd/system.conf
    
  2. Add the following to the file:

     DefaultEnvironment="GOOGLE_APPLICATION_CREDENTIALS=path_to_credentials_file"
    
  3. Reload the environment variables:

     sudo systemctl daemon-reload
    
  4. Restart the agent by running the following command on your VM instance:

     sudo service google-cloud-ops-agent restart
    

Windows

In PowerShell, run the following commands as administrator to set the GOOGLE_APPLICATION_CREDENTIALS system environment variable for the Ops Agent to use.

    [Environment]::SetEnvironmentVariable("GOOGLE_APPLICATION_CREDENTIALS", "path_to_credentials_file", "Machine")

Next steps

Your VM instance now has the credentials that the agent needs.