Skip to content

Instantly share code, notes, and snippets.

@Gowiem
Created August 3, 2020 22:26
Show Gist options
  • Save Gowiem/2f14ed11b4583a675a8839cb22a32ae8 to your computer and use it in GitHub Desktop.
Save Gowiem/2f14ed11b4583a675a8839cb22a32ae8 to your computer and use it in GitHub Desktop.
#!/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