概要
CodeDeployでEC2にデプロイするときのhooksで呼ばれているshellの出力先をメモ的にまとめる。
前提
当該のEC2へは当該のCodeDeployを使ってデプロイが行えており、当該EC2にssh接続ができること。
内容
デプロイ先EC2の/opt/codedeploy-agent/deployment-root/deployment-logs/codedeploy-agent-deployments.log
の中に出力されている。
例えば下記のようなshellを記載してデプロイ時に呼び出していたとする。
#!/bin/bash
echo "This is an output from the AfterInstall hook."
EC2の/opt/codedeploy-agent/deployment-root/deployment-logs/codedeploy-agent-deployments.log
に下記のように出力される。
[stdout]This is an output from the AfterInstall hook.
※[stdout]は標準出力という意味らしい。