Skip to content

Instantly share code, notes, and snippets.

@anhtv08
Created August 25, 2019 00:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anhtv08/d5a9faa4586647f0480d3187487cc4ec to your computer and use it in GitHub Desktop.
Save anhtv08/d5a9faa4586647f0480d3187487cc4ec to your computer and use it in GitHub Desktop.
def shutdown_ec2_instance(ec2_client, instanceId):
log.info("shutting down instance-id :" + instanceId)
ec2_client.terminate_instances(
InstanceIds=[
instanceId
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment