Can aws SSM patch manager patch instances with state "Stopped"?

0

Hi,

The question same as in the title. Can/does "aws SSM patch manager" patch instances with state "Stopped"? Im curious, because it seems that sometimes, even thought the patch manager is being ran every day, i still see some instances have vulnerabilities.

Thank you.

2 Answers
3
Accepted Answer

AWS Systems Manager (SSM) Patch Manager does not patch instances that are in a "Stopped" state. Patch Manager can only manage and apply patches to instances that are running.

You can use an Automation document to start instances before the patch window and stop them afterward.

{
  "description": "Starts EC2 instances",
  "schemaVersion": "0.3",
  "assumeRole": "{{ AutomationAssumeRole }}",
  "parameters": {
    "InstanceIds": {
      "type": "StringList",
      "description": "List of EC2 Instance IDs to start"
    }
  },
  "mainSteps": [
    {
      "action": "aws:changeInstanceState",
      "name": "startInstances",
      "inputs": {
        "InstanceIds": "{{ InstanceIds }}",
        "State": "started"
      }
    }
  ]
}

{
  "description": "Stops EC2 instances",
  "schemaVersion": "0.3",
  "assumeRole": "{{ AutomationAssumeRole }}",
  "parameters": {
    "InstanceIds": {
      "type": "StringList",
      "description": "List of EC2 Instance IDs to stop"
    }
  },
  "mainSteps": [
    {
      "action": "aws:changeInstanceState",
      "name": "stopInstances",
      "inputs": {
        "InstanceIds": "{{ InstanceIds }}",
        "State": "stopped"
      }
    }
  ]
}

Configure Maintenance Window:

Task 1: Schedule the automation document to start instances.

Task 2: Run the SSM Patch Manager task to patch instances.

Task 3: Schedule the automation document to stop instances.

profile picture
EXPERT
answered a month ago
profile picture
EXPERT
Artem
reviewed 21 days ago
0

You can start all instances before patching, and those that were already running would keep runnng. Stopping is bit more complex as you”d not want to stop all of them, but only those that were stopped before you started. Here is a link to Cloud Custodian that tags originally stopped instances by tagging them with specific tag.

https://cloudcustodian.io/docs/usecases/ec2poweronstoppedforpatching.html

profile picture
EXPERT
Kallu
answered a month ago