Icebreaker is an open-source app for Microsoft Teams that helps the whole team get closer by pairing members up every week at random to meet for coffee, burgers, pizza, or a walk around the block.
Examples from AI knowledge base:
az ad app create --display-name mytestapp --optional-claims @manifest.json
Create an application with optional claims
az ad app create --display-name mytestapp --identifier-uris https://mytestapp.websites.net/ --app-roles @manifest.json
Create an application with a role
Examples from AI knowledge base:
az ad app credential reset --id 00000000-0000-0000-0000-000000000000
append or overwrite an application's password or certificate credentials (autogenerated)
az ad app credential reset --id 00000000-0000-0000-0000-000000000000 --cert "@~/cert.pem"
Append a certificate to the application with the certificate file.
receiving below error while deploying icebreaker with code
Starting deployment... Login with your Azure subscription account. Launching Azure sign-in window...
WARNING: A web browser has been opened at https://login.microsoftonline.com/9026c5f4-86d0-4b9f-bd39-b7d4d0fb4674/oauth2/v2.0/authorize. Please continue the login in the web browser. If no web browser is available or if the with
az login --use-device-code
.Creating Azure AD App: tesla-icebreaker... ERROR: unrecognized arguments: --available-to-other-tenants True --oauth2-allow-implicit-flow False
Examples from AI knowledge base: az ad app create --display-name mytestapp --optional-claims @manifest.json Create an application with optional claims
az ad app create --display-name mytestapp --identifier-uris https://mytestapp.websites.net/ --app-roles @manifest.json Create an application with a role
https://docs.microsoft.com/en-US/cli/azure/ad/app#az_ad_app_create Read more about the command in reference docs Waiting for app creation to finish... Azure AD App: “App1” is created. Updating app secret... ERROR: argument --id: expected one argument
Examples from AI knowledge base: az ad app credential reset --id 00000000-0000-0000-0000-000000000000 append or overwrite an application's password or certificate credentials (autogenerated)
az ad app credential reset --id 00000000-0000-0000-0000-000000000000 --cert "@~/cert.pem" Append a certificate to the application with the certificate file.
https://docs.microsoft.com/en-US/cli/azure/ad/app/credential#az_ad_app_credential_reset Read more about the command in reference docs Azure AD App: “App1” registered successfully.