Skip to content

Commit

Permalink
v1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcGueury committed Nov 27, 2023
1 parent 8558e32 commit 3d61a3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions basis/bin/shared_bash_function.sh
Original file line number Diff line number Diff line change
Expand Up @@ -215,10 +215,11 @@ get_user_details() {
fi

# Find TF_VAR_username based on TF_VAR_user_ocid or the opposite
if [ "$TF_VAR_username" != "" ]; then
export TF_VAR_user_ocid=`oci iam user list --name $TF_VAR_username | jq -r .data[0].id`
elif [ "$TF_VAR_user_ocid" != "" ]; then
# In this order, else this is not reentrant. "oci iam user list" require more privileges.
if [ "$TF_VAR_user_ocid" != "" ]; then
export TF_VAR_username=`oci iam user get --user-id $TF_VAR_user_ocid | jq -r '.data.name'`
elif [ "$TF_VAR_username" != "" ]; then
export TF_VAR_user_ocid=`oci iam user list --name $TF_VAR_username | jq -r .data[0].id`
fi
auto_echo TF_VAR_username=$TF_VAR_username
auto_echo TF_VAR_user_ocid=$TF_VAR_user_ocid
Expand Down
1 change: 1 addition & 0 deletions option/test_suite_shared.sh
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ build_option() {
if [ "$OPTION_SHAPE" != "amd" ]; then
NAME=${NAME}-$OPTION_SHAPE
fi
NAME=${NAME/_/-}
start_test $NAME
cd $TEST_HOME/oci-starter
./oci_starter.sh \
Expand Down

0 comments on commit 3d61a3d

Please sign in to comment.