-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathcfn-test-create-inputs.sh
More file actions
executable file
·43 lines (35 loc) · 1.15 KB
/
cfn-test-create-inputs.sh
File metadata and controls
executable file
·43 lines (35 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env bash
# cfn-test-create-inputs.sh
#
# This tool generates json files in the inputs/ for `cfn test`.
#
set -o nounset
set -o pipefail
WORDTOREMOVE="template."
function usage {
echo "usage:$0 <project_name>"
}
if [ "$#" -ne 1 ]; then usage; fi
if [[ "$*" == help ]]; then usage; fi
rm -rf inputs
mkdir inputs
projectName="${1}"
MONGODB_ATLAS_PROFILE=${MONGODB_ATLAS_PROFILE:-"default"}
projectId=$(atlas projects list --output json | jq --arg NAME "${projectName}" -r '.results[] | select(.name==$NAME) | .id')
if [ -z "$projectId" ]; then
projectId=$(atlas projects create "${projectName}" --output=json | jq -r '.id')
echo -e "Created project \"${projectName}\" with id: ${projectId}\n"
else
echo -e "FOUND project \"${projectName}\" with id: ${projectId}\n"
fi
echo "Check if a project is created $projectId"
cd "$(dirname "$0")" || exit
for inputFile in inputs_*; do
outputFile=${inputFile//$WORDTOREMOVE/}
jq --arg ProjectId "$projectId" --arg Profile "${MONGODB_ATLAS_PROFILE}" \
'.ProjectId?|=$ProjectId | .Profile?|=$Profile' \
"$inputFile" >"../inputs/$outputFile"
done
cd ..
ls -l inputs
#mongocli iam projects delete "${projectId}" --force