4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CloudTrailを触ってみる

Posted at

参照

CloudTrailとは

  • 2013/11 新しいAWSサービスである
  • EC2, EBS, VPC, RDS, IAM, STSなどサービスに対して、コールを記録できる
  • 誰、いつ、何をやる、操作のIPアドレスを、S3バケットに保存するたびに、SNSのトピックに対して通知できる

CloudTrailアーキテクチャ(参照: aws.typepad.com)

aws.typepad.comから参照

起動と設定

AWS console

  1. aws cloudtrailコンソール画面を開ける
  2. 「Get Started」をクリックする
  3. S3バケットネームを入力する
  4. file prefixを入力する

AWS CLI

$ aws cloudtrail create-subscription \
$   --name=awscloudtrail-test \
$   --s3-new-bucket=awscloudtrail-test-bucket \
$   --s3-prefix=prefix-test
4
5
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
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?