diff --git a/deploy/terraform-datacommons-website/examples/website_v1/plan b/deploy/terraform-datacommons-website/examples/website_v1/plan deleted file mode 100644 index e31387ba0f..0000000000 Binary files a/deploy/terraform-datacommons-website/examples/website_v1/plan and /dev/null differ diff --git a/scripts/install_custom_dc.sh b/scripts/install_custom_dc.sh index bac7d02bdd..39102dfb8b 100755 --- a/scripts/install_custom_dc.sh +++ b/scripts/install_custom_dc.sh @@ -14,7 +14,12 @@ # limitations under the License. set -e -CUSTOM_DC_RELEASE_TAG=custom-dc-v0.3.2 +CUSTOM_DC_RELEASE_TAG=$1 + +if [[ -z "$CUSTOM_DC_RELEASE_TAG" ]]; then + echo "Should run this script with first argument being the custom dc version tag found from https://github.com/datacommonsorg/website/tags" + exit 1 +fi # In some environments (such as Cloud Shell), IPv6 is not enabled on the OS. # This causes problems during terraform runs. Fix is from the issue below.