LoginSignup
0
1

More than 5 years have passed since last update.

Boto3を使ってAWSインスタンスを停止

Last updated at Posted at 2017-05-29

AWSのインスタンスを停止する処理をBoto3で書きました。
タグを取得してリストをとってきて、グループで停止やLambdaを使って停止するなど実装していきたいと思います。

せっかく作ったのでブログにアップしてみます。

# -*- coding: utf-8 -*-

# import
import boto3
from boto3.session import Session

ec2 = boto3.client('ec2')
InstanceId = 'インスタンスID'

# def
def ec2_stop():
  response = ec2.stop_instances(
    InstanceIds=[
      InstanceId
    ]
  )

# Main
if __name__ == "__main__":
  ec2_stop()

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1