マニュアル: cloudmapper

投稿日: 更新日:

全然うまく行っていません。。。

Dockerのビルド

  1. git clone https://github.com/duo-labs/cloudmapper.git
  2. cd cloudmapper
  3. docker build -t mycloudmapper --build-arg ACCOUNT=123412341234 --build-arg AWS_DEFAULT_REGION=ap-northeast-1 --build-arg AWS_REGION=ap-northeast-1 .

Dockerの起動〜表示まで

  1. docker run --rm -p 8000:8000 -it mycloudmapper /bin/bash
  2. pip install awscli pyjq netaddr boto3
  3. aws configure
    • Default region nameを指定しておくこと。
  4. config.json を作成
    • id: アカウント(12桁)
    • name: アカウント名(任意?)
  5. データ収集
    • python cloudmapper.py gather --account-name アカウント名
  6. http://localhost:8000/ にアクセス

公式サイト