File tree 2 files changed +32
-0
lines changed
2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 98
98
executor : terraform/terraform-0_12
99
99
steps :
100
100
- 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"
101
105
- terraform/publish-module :
102
106
path : tf_module/ckr_aws
103
107
module_name : pe/ckr/aws
@@ -107,6 +111,10 @@ jobs:
107
111
executor : terraform/terraform-0_12
108
112
steps :
109
113
- 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"
110
118
- terraform/publish-module :
111
119
path : tf_module/ckr_gcp
112
120
module_name : pe/ckr/gcp
You can’t perform that action at this time.
0 commit comments