Skip to content

Commit 66979f9

Browse files
committed
fixing the azure security error for windows installers
1 parent 69e478d commit 66979f9

File tree

4 files changed

+104
-64
lines changed

4 files changed

+104
-64
lines changed

installers.zip

123 Bytes
Binary file not shown.

installers/azure/setup_azure_file_notification.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,20 @@ while true; do
4747
fi
4848
done
4949

50+
while true; do
51+
echo "Do you have 'key vault crypto officer', 'key vault secrets officer' and 'key vault data access administrator' access on your azure subscription? (yes/no):"
52+
read user_input
53+
54+
if [ "$user_input" == "yes" ]; then
55+
break
56+
elif [ "$user_input" == "no" ]; then
57+
echo "In order to run all the steps of this script, one must have access to 'key vault crypto officer', 'key vault secrets officer' and 'key vault data access administrator' at your azure subscription level, please contact your administrator to add you with these accesses"
58+
exit
59+
else
60+
echo "Invalid input. Please enter 'yes' or 'no'."
61+
fi
62+
done
63+
5064
while true; do
5165
echo "Running this script will create new resources (if it does not exists) such as resource-group, storage-account, container, function-app, system-topic and event-subscription in azure. Agree to proceed? (yes/no):"
5266
read user_input

windows_installers.zip

343 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)