Manage OS Login in an organization


This document describes how you can use OS Login to manage access to VM instances across your organization.

This topic covers the following tasks:

Before you begin

  • If you haven't already, set up authentication. Authentication is the process by which your identity is verified for access to Google Cloud services and APIs. To run code or samples from a local development environment, you can authenticate to Compute Engine as follows.

    Select the tab for how you plan to use the samples on this page:

    Console

    When you use the Google Cloud console to access Google Cloud services and APIs, you don't need to set up authentication.

    gcloud

    1. Install the Google Cloud CLI, then initialize it by running the following command:

      gcloud init
    2. Set a default region and zone.

    REST

    To use the REST API samples on this page in a local development environment, you use the credentials you provide to the gcloud CLI.

      Install the Google Cloud CLI, then initialize it by running the following command:

      gcloud init

OS Login organization policy

You can set up an OS Login constraint in your organization to ensure that all new projects, and the VM instances created in these new projects, have OS Login enabled.

When this constraint is set up, the following conditions are applied:

  • enable-oslogin=true is included in the project metadata for all new projects.
  • Requests that set enable-oslogin to false in instance or project metadata are rejected, for new and existing VMs and projects.

Limitations

OS Login is not supported in the following products, features, and VMs:
  • Cloud Data Fusion versions 6.1.4 and earlier
  • Cloud Composer
  • Google Kubernetes Engine (GKE) public clusters that run versions earlier than 1.23.5
  • GKE private clusters that run node pool versions earlier than 1.20.5
  • Dataproc Serverless
  • Windows Server and SQL Server VMs
  • Fedora CoreOS VMs. To manage instance access to VMs created using these images, use the Fedora CoreOS ignition system

Workarounds for Cloud Data Fusion, Cloud Composer, and GKE

To use OS Login in organizations that use Cloud Data Fusion, Cloud Composer, and GKE, you can enable OS Login constraint at the organization level and then selectively disable the constraint on projects or folders for the affected projects.

For more information about editing organization policies, see creating and editing policies.

Enable the organization policy

To enable the OS Login policy, you can set the OS Login constraint on specific projects and folders by using the Google Cloud CLI. You can also set the OS Login constraint on the entire organization by using either the Google Cloud console or the Google Cloud CLI.

Console

To set the OS Login organization policy from the console, complete the following steps:

  1. In the Google Cloud console, go to the Organization policies page.

    Go to the Organization policies page

  2. In the policies list, click Require OS Login to view the OS Login constraints.
  3. Click Edit to edit your existing OS Login constraints.
  4. On the Edit page, select Customize.
  5. To enable enforcement of this constraint, select On.
  6. Click Save to apply the constraint settings.

gcloud

To set the OS Login organization policy, use the gcloud beta resource-manager org-policies enable-enforce command.

  1. Find your organization ID.

    gcloud organizations list
  2. Set the constraint in your organization. Replace organization-id with your your organization ID.

    gcloud beta resource-manager org-policies enable-enforce compute.requireOsLogin \
        --organization=organization-id
    

You can also apply the OS Login organization policy to a folder or a project with the --folder or the --project flags, and the folder ID and project ID, respectively.

For folders, run the following command:

gcloud beta resource-manager org-policies enable-enforce compute.requireOsLogin \
    --folder=folder-id

For projects, run the following command:

gcloud beta resource-manager org-policies enable-enforce compute.requireOsLogin \
    --project=project-id

Replace the following:

Grant instance access to users outside of your organization

By default, users outside of your organization can't set SSH keys for instances in your organization or be granted access to instances in your organization. In some situations, you might need to grant instance access to users who are part of a different organization or who have a consumer Google gmail.com account.

The roles/compute.osLoginExternalUser IAM role lets external Google Accounts interact with the other OS Login roles by allowing them to configure POSIX account information.

To grant roles/compute.osLoginExternalUser and other necessary OS Login instance access roles to users outside of your organization, complete the following steps:

  1. In the Google Cloud console, go to the project and organization selection page.

    Go to the project and organization selection page

  2. In the Organization drop-down menu, select your organization.
    1. Click All, to view all of your organizations.
    2. Click the name of the organization.
  3. Click Add to add a new role to a user.
  4. Specify the user name for the user for whom you want to configure instance access.
  5. Click Select a role to specify which roles you want to grant to the users.
  6. In the Compute Engine roles list, select the Compute OS Login External User role.
  7. Click Add to confirm that you want to grant the selected role to the user.
  8. If you have not already done so, grant the other OS Login instance access roles to the user at the project or organization level.

The user can now connect to instances in your project that have OS Login enabled.

Manage the OS Login API

At an organization level, you can restrict access to the OS Login API by setting Google Workspace admin controls. To configure Google Workspace admin controls or view configuration options, see Control who uses Google Cloud in your organization. As a Google Workspace admin, you can also turn on or off certain features of the OS Login API. This includes the following options:

  • Choose whether to include the domain suffix in usernames generated by OS Login API. For example, in the domain example.com, the user user@example.com will have the username user if the setting to include domain suffix is not checked.
  • Decide if members of your organization can manage SSH keys using the OS Login API.
  • Restrict or permit VM access to users outside of your organization.

For more information about turning on or off OS Login API settings, see Choose settings for Google Cloud Platform.

Audit OS Login events

As a Google Workspace Admin, you can use the Google Workspace Admin SDK to audit actions performed with the OS Login API. By reviewing these events, you can track when a user adds, deletes, or updates an SSH key, or deletes POSIX account information.

You can retrieve OS Login API audit activity events, from the Google Workspace Admin SDK, by calling Activities.list() with applicationName=gcp. For more information, see Google Cloud activity events in the Google Workspace Admin SDK Reports API documentation.

Modify user accounts using the Directory API

OS Login uses either your Cloud Identity or Google Workspace user settings when connecting to an instance. If you are an organization admin, you can use the Directory API to complete the following tasks for your Google Workspace or Cloud Identity user accounts:

  • Modify instance login settings.
  • Make a user an administrator
  • Modify user properties such as account name and email
  • Add and remove SSH keys for a user
  • Modify POSIX account information
  • Change the username that the users connect to on the instance.

The following examples show how to modify or remove user accounts using the Directory API. For more information about the account properties that you can edit, see the Directory API reference.

Modify account properties

To modify a user's POSIX account information or manage the user's SSH keys, issue a PUT request to the directory.users.update method and specify one or more properties to change on the user account.

If you modify a user's posixAccounts properties, you must specify the current or new username, uid, and gid values in the request.

If you modify the user's sshPublicKeys properties, you must specify the key value in the request.

The following is an example of a PUT request:

PUT https://admin.googleapis.com/admin/directory/v1/users/USER_KEY

{
 "posixAccounts": [
  {
    "username": "USERNAME",
    "uid": "UID",
    "gid": "GID",
    "homeDirectory": "USER_HOME_PATH",
    "shell": "SHELL_PATH"
   }
  ],
 "sshPublicKeys": [
  {
    "key": "KEY_VALUE",
    "expirationTimeUsec": EXPIRATION_TIME
   }
  ],
}

Replace the following:

  • USER_KEY: the user's primary email address, alias email address, or unique user ID.
  • USERNAME: the username that Compute Engine adds to the VM for the user. This value must be unique within your organization and must not end in a tilde ("~") or contain a period (".").
  • UID: the user ID on the VM for this user. This property must be a value between 1001 and 60000, or a value between 65535 and 2147483647. To access a container-optimized OS, the UID must have a value between 65536 and 214748646. The UID must be unique within your organization.
  • GID: the group ID on the VM that the user belongs to.
  • USER_HOME_PATH: (Optional) the home directory on the VM for the user. For example, /home/example_username.
  • SHELL_PATH: (Optional) the path to the default shell for the user after they connect to the instance. For example, /bin/bash or /bin/sh.
  • KEY_VALUE: the public SSH key value.
  • EXPIRATION_TIME: (Optional) the key's expiration time in microseconds since epoch (1 second = 106 microseconds).

Remove account properties

To clear the posixAccounts and sshPublicKeys data for a user, issue a PUT request to the directory.users.update method, setting the posixAccounts and sshPublicKeys fields to null:

PUT https://admin.googleapis.com/admin/directory/v1/users/USER_KEY

{
 "posixAccounts": null,
 "sshPublicKeys": null
}

Replace USER_KEY with the user's primary email address, alias email address, or unique user ID.

Use Linux groups with OS Login

Organization admins can use the Cloud Identity Groups API to configure supplementary Linux groups for OS Login users by creating and managing POSIX groups. OS Login links POSIX groups with supplementary Linux groups in your organization's VMs so that you can manage the permissions users have in your VMs.

Manage user membership in Linux groups

To create a POSIX group, see Creating and updating POSIX groups.

To add users to a group, see Add or invite users to a group.

Membership updates take effect within 10 minutes. Group changes are reflected in all newly created VMs. POSIX group updates may take up to six hours to propagate to all running VMs. Users may have to log out or use the newgrp command to observe group changes.

Rate limits for Linux groups with OS Login

Linux groups with OS Login use oslogin.googleapis.com/metadata_server_groups_requests quota. By default, the quota limit is 60 requests/minute, per project for a particular region.

If you need a higher rate limit, you can request additional quota from the Quotas page in the Google Cloud console.

Go to Quotas

Use workforce identity federation with OS Login

Organizations that use workforce identity federation can use OS Login to manage access to their VMs. When workforce identity federation is enabled for an organization, OS Login uses certificate-based authentication instead of key-based authentication to verify user identities.

Before you begin

Limitations

  • The VM you're connecting to must have OpenSSH version 7.4 or later to use workforce identity federation with OS Login.

  • Users in organizations that use workforce identity federation can't access VM's serial ports.

Connect to VMs that use OS Login and workforce identity federation

Connect to VMs that use OS Login with workforce identity federation using the Google Cloud console, the gcloud CLI, or other SSH clients.

Console

When you connect to VMs that use OS Login with workforce identity federation using SSH-in-browser, Compute Engine configures the SSH certificate on your behalf when you attempt to connect.

To connect to VMs, do the following:

  1. In the Google Cloud console, go to the VM instances page.

    Go to VM instances

  2. In the list of virtual machine instances, click SSH in the row of the instance that you want to connect to.

    SSH button next to instance name.

gcloud

When you connect to VMs that use OS Login with workforce identity federation using the gcloud CLI, Compute Engine configures the SSH certificate on your behalf when you attempt to connect.

Connect to a VM using SSH by running the gcloud compute ssh command:

  1. In the Google Cloud console, activate Cloud Shell.

    Activate Cloud Shell

    At the bottom of the Google Cloud console, a Cloud Shell session starts and displays a command-line prompt. Cloud Shell is a shell environment with the Google Cloud CLI already installed and with values already set for your current project. It can take a few seconds for the session to initialize.

  2. Run the following command:

    gcloud compute ssh --project=PROJECT_ID --zone=ZONE VM_NAME

    Connect to the VM by running the following command:

    • PROJECT_ID: the ID of the project that contains the VM
    • ZONE: the name of the zone that the VM is located in
    • VM_NAME: the name of the VM

    If you have set default properties for the Google Cloud CLI, you can omit the --project and --zone flags from this command. For example:

    gcloud compute ssh VM_NAME

IAP Desktop

When you connect to VMs that use OS Login with workforce identity federation using IAP Desktop, Compute Engine configures the SSH certificate on your behalf when you attempt to connect.

To connect to a VM using IAP Desktop, do the following:

  1. Install IAP Desktop on your workstation if you haven't already.

  2. Open IAP Desktop. The Add projects window opens.

  3. When prompted, sign in with workforce identity federation.

  4. In the Add projects window, enter the project ID or name of the project that contains the VMs you want to connect to.

  5. In the Project Explorer window, right-click the name of the VM again and select Connect to connect to the VM.

SSH client

To connect to a VM that uses OS Login with workforce identity federation using an SSH client, do the following:

  1. Create an SSH key if you don't already have one.
  2. Sign your public SSH key using the users.projects.locations.signSshPublicKey method:

    POST https://oslogin.googleapis.com/v1beta/users/USER/projects/PROJECT_ID/locations/LOCATION:signSshPublicKey
    
    {
     "ssh_public_key": "PUBLIC_KEY"
    }
    

    Replace the following:

    • USER: a single identity in a workforce pool, in the following format:

      principal:%2F%2Fiam.googleapis.com%2Flocations%2Fglobal%2FworkforcePools%2POOL_ID%2Fsubject%2FSUBJECT_ATTRIBUTE_VALUE
      

      Replace the following:

    • PROJECT_ID: the project ID of the project that contains the VM you want to connect to.

    • LOCATION: the zone where the VM you want to connect to is located.

    • PUBLIC_KEY: the contents of your SSH public key file.

  3. Copy the SSH certificate from the output of the user.signSshPublicKey method and save the contents in a new file.

  4. Set permissions on the SSH certificate file, by running the following command:

    sudo chmod 600 FILE_NAME
    

    Replace FILE_NAME with the name of the file.

  5. Connect to the VM using the following command:

    ssh -i PATH_TO_PRIVATE_KEY -o CertificateFile=PATH_TO_SSH_CERTIFICATE USERNAME@EXTERNAL_IP
    

    Replace the following:

    • PATH_TO_PRIVATE_KEY: the path to your private SSH key file.
    • PATH_TO_SSH_CERTIFICATE: the path to your SSH certificate file.
    • USERNAME: the value of the user's google.posix_username attribute mapping.
    • EXTERNAL_IP: the external IP address of the VM.

What's next