Running commands using a specific document version - AWS Systems Manager

Running commands using a specific document version

You can use the document version parameter to specify which version of an AWS Systems Manager document to use when the command runs. You can specify one of the following options for this parameter:

  • $DEFAULT

  • $LATEST

  • Version number

Run the following procedure to run a command using the document version parameter.

Linux
To run commands using the AWS CLI on local Linux machines
  1. Install and configure the AWS Command Line Interface (AWS CLI), if you haven't already.

    For information, see Installing or updating the latest version of the AWS CLI.

  2. List all available documents

    This command lists all of the documents available for your account based on AWS Identity and Access Management (IAM) permissions.

    aws ssm list-documents
  3. Run the following command to view the different versions of a document. Replace document name with your own information.

    aws ssm list-document-versions \ --name "document name"
  4. Run the following command to run a command that uses an SSM document version. Replace each example resource placeholder with your own information.

    aws ssm send-command \ --document-name "AWS-RunShellScript" \ --parameters commands="echo Hello" \ --instance-ids instance-ID \ --document-version '$LATEST'
Windows
To run commands using the AWS CLI on local Windows machines
  1. Install and configure the AWS Command Line Interface (AWS CLI), if you haven't already.

    For information, see Installing or updating the latest version of the AWS CLI.

  2. List all available documents

    This command lists all of the documents available for your account based on AWS Identity and Access Management (IAM) permissions.

    aws ssm list-documents
  3. Run the following command to view the different versions of a document. Replace document name with your own information.

    aws ssm list-document-versions ^ --name "document name"
  4. Run the following command to run a command that uses an SSM document version. Replace each example resource placeholder with your own information.

    aws ssm send-command ^ --document-name "AWS-RunShellScript" ^ --parameters commands="echo Hello" ^ --instance-ids instance-ID ^ --document-version "$LATEST"
PowerShell
To run commands using the Tools for PowerShell
  1. Install and configure the AWS Tools for PowerShell (Tools for Windows PowerShell), if you haven't already.

    For information, see Installing the AWS Tools for PowerShell.

  2. List all available documents

    This command lists all of the documents available for your account based on AWS Identity and Access Management (IAM) permissions.

    Get-SSMDocumentList
  3. Run the following command to view the different versions of a document. Replace document name with your own information.

    Get-SSMDocumentVersionList ` -Name "document name"
  4. Run the following command to run a command that uses an SSM document version. Replace each example resource placeholder with your own information.

    Send-SSMCommand ` -DocumentName "AWS-RunShellScript" ` -Parameter @{commands = "echo helloWorld"} ` -InstanceIds "instance-ID" ` -DocumentVersion $LATEST