forked from webpwnized/gcp-audit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcis-1.8.1-service-account-roles.sh
executable file
·49 lines (43 loc) · 1.13 KB
/
cis-1.8.1-service-account-roles.sh
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
44
45
46
47
48
49
#!/bin/bash
PROJECT_IDS="";
DEBUG="False";
HELP=$(cat << EOL
$0 [-p, --project PROJECT] [-d, --debug] [-h, --help]
EOL
);
for arg in "$@"; do
shift
case "$arg" in
"--help") set -- "$@" "-h" ;;
"--debug") set -- "$@" "-d" ;;
"--project") set -- "$@" "-p" ;;
*) set -- "$@" "$arg"
esac
done
while getopts "hdp:" option
do
case "${option}"
in
p)
PROJECT_IDS=${OPTARG};;
d)
DEBUG="True";;
h)
echo $HELP;
exit 0;;
esac;
done;
if [[ $PROJECT_IDS == "" ]]; then
declare PROJECT_IDS=$(gcloud projects list --format="flattened(PROJECT_ID)" | grep project_id | cut -d " " -f 2);
fi;
for PROJECT_ID in $PROJECT_IDS; do
PROJECT_DETAILS=$(gcloud projects describe $PROJECT_ID --format="json");
PROJECT_APPLICATION=$(echo $PROJECT_DETAILS | jq -rc '.labels.app');
PROJECT_OWNER=$(echo $PROJECT_DETAILS | jq -rc '.labels.adid');
echo "IAM Policy for Project $PROJECT_ID"
echo "Project Application: $PROJECT_APPLICATION";
echo "Project Owner: $PROJECT_OWNER";
echo ""
gcloud projects get-iam-policy $PROJECT_ID;
echo ""
done;