Skip to content

Commit 60949e9

Browse files
authored
Check existing tf module versions (#466)
* Check existing module versions * Pass version into script * Add module name as script arg * Change branch back to master * Add GCP tf module check
1 parent fbedc52 commit 60949e9

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

.circleci/check_tf_module_versions.sh

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/usr/bin/env bash
2+
3+
set -e
4+
set -o pipefail
5+
6+
VERSION=$1
7+
readonly VERSION
8+
MODULE_NAME=$2
9+
readonly MODULE_NAME
10+
11+
12+
REGISTRY_URL=$(curl --fail -sL "https://$TF_REGISTRY_HOST/.well-known/terraform.json" | jq -r '."modules.v1"')
13+
14+
if [[ "$REGISTRY_URL" == "" ]]; then
15+
echo "Failed to find registry API"
16+
exit 2
17+
fi
18+
19+
EXISTING_VERSION=$(curl "${REGISTRY_URL}${MODULE_NAME}/versions" | jq -c '.modules[0].versions[] | select(.version == '\""$VERSION"\"')')
20+
21+
if [[ -n "$EXISTING_VERSION" ]]; then
22+
echo "Version $VERSION already exists, skipping"
23+
circleci-agent step halt
24+
fi

.circleci/config.yml

+8
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@ jobs:
9898
executor: terraform/terraform-0_12
9999
steps:
100100
- checkout
101+
- run:
102+
name: check_existing_version
103+
command: |
104+
.circleci/check_tf_module_versions.sh "$(<tf_module/ckr_aws/module_version.txt)" "pe/ckr/aws"
101105
- terraform/publish-module:
102106
path: tf_module/ckr_aws
103107
module_name: pe/ckr/aws
@@ -107,6 +111,10 @@ jobs:
107111
executor: terraform/terraform-0_12
108112
steps:
109113
- checkout
114+
- run:
115+
name: check_existing_version
116+
command: |
117+
.circleci/check_tf_module_versions.sh "$(<tf_module/ckr_gcp/module_version.txt)" "pe/ckr/gcp"
110118
- terraform/publish-module:
111119
path: tf_module/ckr_gcp
112120
module_name: pe/ckr/gcp

0 commit comments

Comments
 (0)