Step 8: (Optional) Allow and control permissions for SSH connections through Session Manager - Amazon Systems Manager
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Step 8: (Optional) Allow and control permissions for SSH connections through Session Manager

You can allow users in your Amazon Web Services account to use the Amazon Command Line Interface (Amazon CLI) to establish Secure Shell (SSH) connections to managed nodes using Amazon Systems Manager Session Manager. Users who connect using SSH can also copy files between their local machines and managed nodes using Secure Copy Protocol (SCP). You can use this functionality to connect to managed nodes without opening inbound ports or maintaining bastion hosts.

After allowing SSH connections, you can use Amazon Identity and Access Management (IAM) policies to explicitly allow or deny users, groups, or roles to make SSH connections using Session Manager.

Note

Logging isn't available for Session Manager sessions that connect through port forwarding or SSH. This is because SSH encrypts all session data, and Session Manager only serves as a tunnel for SSH connections.

Allowing SSH connections for Session Manager

Use the following steps to allow SSH connections through Session Manager on a managed node.

To allow SSH connections for Session Manager
  1. On the managed node to which you want to allow SSH connections, do the following:

  2. On the local machine from which you want to connect to a managed node using SSH, do the following:

    • Ensure that version 1.1.23.0 or later of the Session Manager plugin is installed.

      For information about installing the Session Manager plugin, see Install the Session Manager plugin for the Amazon CLI.

    • Update the SSH configuration file to allow running a proxy command that starts a Session Manager session and transfer all data through the connection.

      Linux and macOS

      Tip

      The SSH configuration file is typically located at ~/.ssh/config.

      Add the following to the configuration file on the local machine.

      # SSH over Session Manager host i-* mi-* ProxyCommand sh -c "aws ssm start-session --target %h --document-name AWS-StartSSHSession --parameters 'portNumber=%p'"

      Windows

      Tip

      The SSH configuration file is typically located at C:\Users\<username>\.ssh\config.

      Add the following to the configuration file on the local machine.

      # SSH over Session Manager host i-* mi-* ProxyCommand C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe "aws ssm start-session --target %h --document-name AWS-StartSSHSession --parameters portNumber=%p"
    • Create or verify that you have a Privacy Enhanced Mail certificate (a PEM file), or at minimum a public key, to use when establishing connections to managed nodes. This must be a key that is already associated with the managed node. The permissions of your private key file must be set so that only you can read it. You can use the following command to set the permissions of your private key file so that only you can read it.

      chmod 400 <my-key-pair>.pem

      For example, for an Amazon Elastic Compute Cloud (Amazon EC2) instance, the key pair file you created or selected when you created the instance. (You specify the path to the certificate or key as part of the command to start a session. For information about starting a session using SSH, see Starting a session (SSH).)

Controlling user permissions for SSH connections through Session Manager

After you enable SSH connections through Session Manager on a managed node, you can use IAM policies to allow or deny users, groups, or roles the ability to make SSH connections through Session Manager.

To use an IAM policy to allow SSH connections through Session Manager
  • Use one of the following options:

    • Option 1: Open the IAM console at https://console.amazonaws.cn/iam/.

      In the navigation pane, choose Policies, and then update the permissions policy for the user or role you want to allow to start SSH connections through Session Manager.

      For example, add the following element to the Quickstart policy you created in Quickstart end user policies for Session Manager. Replace each example resource placeholder with your own information.

      { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": "ssm:StartSession", "Resource": [ "arn:aws-cn:ec2:region:account-id:instance/instance-id", "arn:aws-cn:ssm:*:*:document/AWS-StartSSHSession" ], "Condition": { "BoolIfExists": { "ssm:SessionDocumentAccessCheck": "true" } } } ] }
    • Option 2: Attach an inline policy to a user policy by using the Amazon Web Services Management Console, the Amazon CLI, or the Amazon API.

      Using the method of your choice, attach the policy statement in Option 1 to the policy for an Amazon user, group, or role.

      For information, see Adding and Removing IAM Identity Permissions in the IAM User Guide.

To use an IAM policy to deny SSH connections through Session Manager
  • Use one of the following options:

    • Option 1: Open the IAM console at https://console.amazonaws.cn/iam/. In the navigation pane, choose Policies, and then update the permissions policy for the user or role to block from starting Session Manager sessions.

      For example, add the following element to the Quickstart policy you created in Quickstart end user policies for Session Manager.

      { "Version": "2012-10-17", "Statement": [ { "Sid": "VisualEditor1", "Effect": "Deny", "Action": "ssm:StartSession", "Resource": "arn:aws-cn:ssm:*:*:document/AWS-StartSSHSession" } ], "Condition": { "BoolIfExists": { "ssm:SessionDocumentAccessCheck": "true" } } }
    • Option 2: Attach an inline policy to a user policy by using the Amazon Web Services Management Console, the Amazon CLI, or the Amazon API.

      Using the method of your choice, attach the policy statement in Option 1 to the policy for an Amazon user, group, or role.

      For information, see Adding and Removing IAM Identity Permissions in the IAM User Guide.