User Profile
alexandrenedelec
Brass Contributor
Joined 7 years ago
User Widgets
Recent Discussions
Is there a way to have a free access to Azure DevOps for teaching purposes (more than 5 students)?
I am going to teach students (in engineering school) a course about DevOps practices. I want to make them work with Azure DevOps, learn Azure pipelines, and everything. So I need a dedicated Azure DevOps organization where I can invite all the students (they should be less than 30). However, there are only 5 free basic seats on an organization and pipelines Microsoft Hosted agents are disabled by default. Is there a program for Azure DevOps for teaching purposes and how can I request access? There is an "Azure Dev Tools for Teaching" program but as far as I know, it's for Azure only not for Azure DevOps.1.3KViews0likes1CommentDoes ADX connection string support Managed Identities ?
I am wondering if it's possible to authorize a managed identity in Azure (let's say an Azure App Service) to query an ADX database ? The aim would be toto avoid having using connection strings with secret in it and directly configuring the Azure resources that need query ADX with the correct permissions. And if so, do you have a sample or a documentation that shows how to configure that ?1KViews0likes0CommentsTooling for managing ADX deployment.
Is there some tooling planned for maning ADX deployment like it is the case for Azure SQL Database ? I am not talking about deploying the ADX Azure resource but to deploy new versions of a function or update a mapping ... With Azure SQL Database, there is some Microsoft or external provider tooling to do state based or migration based deployment, with the use of sqlproj for instance, I did not find anything regarding ADX. I have seen there is an Azure DevOps task to deploy kql scripts but that's all and it implies that we should take care of making the kql scripts indempotent to avoid mistakes when the pipeline is replayed for another deployment. How do you advise to handle an ADX project, store kql files describing the "structure" of the database in a git repository and use an Azure DevOps pipeline to regularly deploy that ? Do you have samples on how you are handling that ?Solved688Views0likes1CommentRe: How to avoid errors in the authentication pop-up when using the mgt Teams Provider ?
Nikitha-MSFTI am not sure to understand, where do I need to add the auth endpoint ? I had a look at the sample but this is a NodeJs application but it does not seem to correspond to my use case which is to use the Microsoft Graph Toolkit Teams Provider without having exceptions.888Views0likes0CommentsHow to avoid errors in the authentication pop-up when using the mgt Teams Provider ?
I am building a Teams tab using the Microsoft Graph Toolkit with Teams Provider in a React.js application. The page corresponding to my tab is the following : import React from "react"; import { Providers, TeamsProvider } from '@microsoft/mgt'; import * as microsoftTeams from "@microsoft/teams-js"; // Set up Teams Provider for ms graph TeamsProvider.microsoftTeamsLib = microsoftTeams; Providers.globalProvider = new TeamsProvider({ clientId: '*-*-*-*-*', authPopupUrl: 'https://***.eu.ngrok.io/auth' }) // Define custom mgt elements as intrinsic JSX elements to avoid tsx errors declare global { // eslint-disable-next-line @typescript-eslint/no-namespace namespace JSX { interface IntrinsicElements { 'mgt-login': any; } } } const MgtTab: React.FC = () => { return ( <div> <mgt-login></mgt-login> <h1>Test from content</h1> </div> ) } export default MgtTab; The authentication page is the following: import React from 'react'; import * as microsoftTeams from "@microsoft/teams-js"; import {TeamsProvider} from '@microsoft/mgt'; const Auth: React.FC = () => { TeamsProvider.microsoftTeamsLib = microsoftTeams; TeamsProvider.handleAuth(); return ( <> </> ) } export default Auth; When I click on the sign-in button on my tab page I have one the following errors: It seems my application registration is correctly configured: Does anyone see what am I doing wrong and what could explain the errors I have ?940Views0likes2CommentsIs it planned to have Visual Studio App templates to develop Microsoft Teams App ?
There are lot of samples available to build Team bots but lots of them are in v3 (.Net Framework) and not in v4. There are also visual studio templates for bot but not for Teams especially, what is missing is a Visual Studio template to build a Teams bot / app.Solved1.8KViews2likes7Comments
Groups
Developer User Group Leaders Hub
The place where user group leaders who want to be in the know -- on the latest & greatest from Microsoft Dev Tools, Azure, and AI topics -- come together to discuss, learn, share best practices, and get weekly updates.
Recent Blog Articles
Re: Use managed identity instead of AzureWebJobsStorage to connect a function app to a storage accou
Bobi_BaoI know that Azure Key Vault can be used here. Yet no secret is better than a secret. Using Managed Identities to remove one and not the other is kind of weird. I love developing using Azure ...2likes0CommentsRe: Use managed identity instead of AzureWebJobsStorage to connect a function app to a storage accou
Bobi_BaoThanks for your answer. Do you know when will we be able to useWEBSITE_CONTENTAZUREFILECONNECTIONSTRING with managed identities? Because the whole point of usingManaged Identity for Azur...7likes0CommentsRe: Use managed identity instead of appsetting AzureWebJobsStorage to connect to storage account
I use exactly that for a Function App I have. I replaced the settingAzureWebJobsStorage byAzureWebJobsStorage__accountname and removed theWEBSITE_CONTENTAZUREFILECONNECTIONSTRINGwhich also contai...11likes0Comments