Technology Engineering

178inaba の技術ブログ

2019-06-01から1ヶ月間の記事一覧

AWS CloudFormation の dry-run を cli でやるコマンド

AWS CloudFormation で dry-run して差分が見たい場合、以下のように create-change-set と describe-change-set のコマンドで見れる。 $ aws cloudformation create-change-set --stack-name test-stack --change-set-name test-stack-dry-run --template-b…

Makefile のシェル代入演算子は macOS 標準の make では使えない

postd.cc 上記記事で != (ビックリイコール) という演算子を知った。 これはシェル代入演算子といい右辺をシェルのコマンドとして実行し、実行結果を左辺に保存するという演算子である。 今回はシェル代入演算子が macOS で動かない現象があったため原因と対…