1234567891011121314 |
- #! /bin/bash
- #
- # Runs an init and apply in all copies of a module
- #
- # TODO: Would be really nice if this did some input validation, and if you
- # could specify 'local' or not.
- for i in $( find . -type d -name "$1" -print | egrep -v "000-skeleton" ); do
- echo Processing $i...
- pushd $i
- terragrunt-local init && terragrunt-local apply
- popd
- done
|