Skip to content

CloudFormation template using Amazon EC2 Auto Scaling Lifecycle Hooks to perform any desired actions before terminating the instance within the Auto Scaling group.

License

Notifications You must be signed in to change notification settings

aws-samples/aws-systemsmanagerautomation-with-asglifecyclehooks

Run code before terminating an EC2 Auto Scaling instance

CloudFormation template related to this blog published on the AWS Infrastructure & Automation blog

Overview

This is a sample solution using Amazon EC2 Auto Scaling Lifecycle Hooks to perform any desired actions before terminating the instance within the Auto Scaling group. lifecycle hook puts the instance in Terminating:Wait status. The Terminating:Wait status will be monitored by an Amazon CloudWatch event, which triggers an AWS Systems Manager automation document to perform the action you want.

Deployment

Prerequisites

  • An Amazon EC2 Auto Scaling group.
  • A String parameter for the domain user. The user must have permission to remove the computer from the domain. I refer to this parameter as DomainUserName.
  • A SecureString parameter that contains the DomainUserName password. I refer to this parameter as DomainPassword.

Walkthrough

The CloudFormation template RunSSMAutomationBeforeTermination.json will go through the following steps:

  1. Add a lifecycle hook.
  2. Create a Systems Manager automation document. The automation document goes through the following steps.
    • Run a Windows PowerShell script to remove the computer from the domain.
    • Create an AMI of the EC2 instance.
    • Execute AWS API CompleteLifecycleAction to terminate the instance.
  3. Create a CloudWatch Events rule.
  4. Add a Systems Manager automation document as a CloudWatch Event target.
  5. (Optional) Create AWS Identity and Access Management (IAM) policies and a role to delegate permissions to the Systems Manager automation document.
  6. (Optional) Create AWS Identity and Access Management (IAM) policies and a role to delegate permissions to Amazon CloudWatch Events, which invokes the Systems Manager automation document.

For more details about launching a stack, refer to Creating a Stack on the AWS CloudFormation Console.

Template Parameters

The stack template includes the following parameters:

Parameter Required Description
AutoScalingGN Yes Enter the name of the auto scaling group to monitor and add the lifecycle hook.
DomainUserName Yes The name of the String parameter for the DomainUser. The user would need to have enough permissions to remove the computer from the domain.
DomainPassword Yes The name of the SecureString parameter that have the password of DomainUserName.
ExistingAutomationAssumeRole No The ARN of AWS Systems Manager Automation assume role. If not specified, the template will create a role with minimum permissions as describe in the blog.
ExistingCloudWatchEventRole No The Role ARN to be used by CloudWatch event to trigger the AWS Systems Manager Automation execution.If not specified, the template will create a role with minimum permissions as describe in the blog.

Security

See CONTRIBUTING for more information.

License

This library is licensed under the MIT-0 License. See the LICENSE file.

About

CloudFormation template using Amazon EC2 Auto Scaling Lifecycle Hooks to perform any desired actions before terminating the instance within the Auto Scaling group.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published