Skip to content

Commit

Permalink
fix: aws-eks: pre-destroy script variable fix (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
fidiego authored Dec 10, 2024
1 parent ee4d07e commit 14782a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws-eks/pre-destroy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -u
set -e

echo "[pre-destroy] preparing to execute pre-destroy script"
role=aws sts get-caller-identity | jq '.Arn'
role=`aws sts get-caller-identity | jq -r '.Arn'`

echo "[pre-destroy] region: "$AWS_REGION" role: "$role

Expand Down

0 comments on commit 14782a6

Please sign in to comment.