Skip to content

Commit

Permalink
update to require module instance
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Apr 5, 2021
1 parent 372be18 commit 6f39668
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions bin/show-user-info.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@ then
exit 1
fi

USER=$1
#USER=$1
MODULE=$1
export GPG_TTY=$(tty)
if [ -z $USER ]
if [ -z $MODULE ]
then
echo "* missing username"
echo "* missing module name"
exit 1
fi

MODULE="user_$USER"
#MODULE="user_$USER"
VARS="user_name user_arn user_password"
declare -A values

Expand Down

0 comments on commit 6f39668

Please sign in to comment.