Created
August 3, 2020 22:26
-
-
Save Gowiem/2f14ed11b4583a675a8839cb22a32ae8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ ! -f README.yaml ]; then | |
echo "Too old." | |
exit 0 | |
fi | |
if [ ! -f versions.tf ]; then | |
echo "Too old." | |
exit 0 | |
fi | |
# Terraform Pinning Upgrade | |
gsed -i -e 's/~> 0.12.0/>= 0.12.0, < 0.14.0/' versions.tf | |
# AWS Pinning Upgrade | |
gsed -i -e 's/aws = "~> 2.0"/aws = ">= 2.0, < 4.0"/' versions.tf | |
# Rebuild README to reflect new pinnings | |
make init | |
make readme |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment