It's Coding Time!
0:12
2 жыл бұрын
Recap/ Summary Week 34
5:08
4 жыл бұрын
Recap/ Summary week #33
1:59
4 жыл бұрын
Recap/ Summary week #31
4:31
4 жыл бұрын
Recap/ Summary of week #30
3:37
4 жыл бұрын
Recap / Summary of the week #29
4:27
5 ways to Manage Azure Resources
14:26
Recap / Summary of the week #28
2:54
Stream #101 Summary
3:27
4 жыл бұрын
Пікірлер
@soulcracker23
@soulcracker23 Ай бұрын
Hello Frank I using Logic App and From Reconition but i am having issues creating the json file of my AI model. Can you help me?
@fboucheros
@fboucheros Ай бұрын
Can you provide more details? Feel free to DM me on social ( LinkedIn, BlueSky, X) what ever you are using
@shahg390
@shahg390 2 ай бұрын
how i can downlod from OneDrive to Azure blob storage.
@fboucheros
@fboucheros Ай бұрын
That a nice question! If I needed to do this I would probably do it using Azure Logic App, Assuming the file to move are not too big.
@colinfritz9711
@colinfritz9711 3 ай бұрын
How do I do this with bicep or the azure cli? Been trying to get it to work for 2 weeks. Need to zip deploy with the cli from a script in azure devops pipeline
@sebastianrodriguezbojorge7123
@sebastianrodriguezbojorge7123 4 ай бұрын
Hello FB!, You say there is no concern about having the appsettings.json in a repository... I see you blur TentantId but [Authority] in appsettings contains the TenantId )... what are the real concerns here? Should those values be moved to a secure storage as KeyVault?
@beeharrybryan4984
@beeharrybryan4984 4 ай бұрын
Can we do a copy from S3 from AWS to azure ADLS?
@Noursbear
@Noursbear 5 ай бұрын
Très bien merci
@ROLOGamingOfficial
@ROLOGamingOfficial 6 ай бұрын
Are there any ways to prevent a bad actor from creating infinite calls making your function runn all.the time.
@adrianf.9491
@adrianf.9491 7 ай бұрын
Thanks, just I was looking for. Clearly explained. Subscribed!!!
@we_areone
@we_areone 8 ай бұрын
😊
@th9267
@th9267 8 ай бұрын
I see this video is 3 years old so Im not sure if comments are still monitored. I will ask away and see what happens. Im using an out of the box blazor web assembly app in VS2022. In the new project template I select microsoft identity platform and I select option to add Microsoft Graph support. When I run the app I am able to login. If I put this on a page... <AuthorizeView> <Authorized> <div> <h3>Authorized Content</h3> </div> </Authorized> <NotAuthorized> <div> <h3>Not Authorized Content</h3> </div> </NotAuthorized> </AuthorizeView> I see "Not Authorized Content" when Im not logged in and "Authorized Content" when I am. This is working as expected. I want to be able to authorize a user based on their roles. I instead my opening tag is <AuthorizeView Roles="xxxx-xxxx-xxxx-xxxx-xxxx"> (where the guild relates to one of the aad groups I am a member of, I see "Not Authorized Content" whether I am logged in or not. My program.cs is.... var builder = WebAssemblyHostBuilder.CreateDefault(args); builder.RootComponents.Add<App>("#app"); builder.RootComponents.Add<HeadOutlet>("head::after"); builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); builder.Services.AddMicrosoftGraphClient("graph.microsoft.com/User.Read"); builder.Services.AddMsalAuthentication(options => { builder.Configuration.Bind("AzureAd", options.ProviderOptions.Authentication); options.ProviderOptions.DefaultAccessTokenScopes.Add("graph.microsoft.com/User.Read"); //options.UserOptions.RoleClaim = ClaimTypes.Role; options.UserOptions.RoleClaim = "schemas.microsoft.com/ws/2008/06/identity/claims/role"; }) .AddAccountClaimsPrincipalFactory<CustomAccountClaimsPrincipalFactory>(); await builder.Build().RunAsync(); and CustomAccountClaimsPrincipalFactory is... public class CustomAccountClaimsPrincipalFactory : AccountClaimsPrincipalFactory<RemoteUserAccount> { public CustomAccountClaimsPrincipalFactory(IAccessTokenProviderAccessor accessor) : base(accessor) { } public async override ValueTask<ClaimsPrincipal> CreateUserAsync(RemoteUserAccount account, RemoteAuthenticationUserOptions options) { var user = await base.CreateUserAsync(account, options); var identity = user.Identity as ClaimsIdentity; if (identity != null) { var groupClaims = identity.FindAll("groups").ToList(); foreach (var groupClaim in groupClaims) { identity.AddClaim(new Claim(ClaimTypes.Role, groupClaim.Value)); Console.WriteLine($"Added role claim: {groupClaim.Value}"); } } return user; } } Is there anything obvious Im doing wrong? Im using net7.0
@ranjitsaggy
@ranjitsaggy 8 ай бұрын
I want to have control over the API by having the source code. Does this DAB tool generate the source code? Or, does it merely create a DLL?
@DiDasKein
@DiDasKein 8 ай бұрын
We carrefull to include the .azurefunction in the zip file. If you zip with powershell by default it will not zip the hidden folder.
@tomschi9485
@tomschi9485 9 ай бұрын
*Microsoft has perverted PaaS and SaaS: Both services would involve professional operations. However, M$ only offers professional operations if you pay for basic SaaS & PaaS functions separately. For example, all M$ services are fundamentally not secure:* They only become slightly more secure if you pay extra money for an endless number of additional security modules. *But even then, M$ doesn't do its homework: Customers have to alert M$ that China hacked Azure and luckily the Russians hacked M$ management staff in December so they could alert their IT to the problems - I bet they didn't realize it themselves either.*
@Poojithadasharadhi
@Poojithadasharadhi 10 ай бұрын
HI Frank Boucher, Can you please give me the .net code repo to set up CI CD for practice? It would be more helpful to us
@sheetanshus5179
@sheetanshus5179 10 ай бұрын
But it will not copy data ? What is the best way to create exact clone with data
@MichaelMateta
@MichaelMateta 10 ай бұрын
skipping loads of steps
@theniteshkumarjain
@theniteshkumarjain 11 ай бұрын
Can we run 24/7 application in azure function? Can we make azure datalake connection using azure function
@donitomojito5295
@donitomojito5295 11 ай бұрын
Frank le BIG Boss!!!!
@andreasvanbergen9696
@andreasvanbergen9696 11 ай бұрын
Wow! Nice tool! I am going to try it out and will let you know how it went... thanks for sharing the video 👍
@mohamadkharma4070
@mohamadkharma4070 11 ай бұрын
fantastic vedio.😃
@johnaweiss
@johnaweiss 11 ай бұрын
So... not free, just EXTREMELY CHEAP. Correct?
@barathkrishna9811
@barathkrishna9811 Жыл бұрын
What's is vms
@fboucheros
@fboucheros Жыл бұрын
virtual machines VM (plural)
@vishnumythilimythili5682
@vishnumythilimythili5682 Жыл бұрын
very interesting learn please send me full link for arm
@Ronickon
@Ronickon Жыл бұрын
Thanx
@zfold4702
@zfold4702 Жыл бұрын
He didn't not mention the initialize variable step. The setProperty method requires passing an Object. The video doesn't show the data type of Initialize Person step.
@ArbitraryZer0101
@ArbitraryZer0101 Жыл бұрын
the episodes are completely in the wrong order in the playlist? jesus.
@cissemy
@cissemy Жыл бұрын
Thanks
@lnk77
@lnk77 Жыл бұрын
don't work without Azure account
@fboucheros
@fboucheros Жыл бұрын
What do you mean @@lnk77? In this video I'm not even connected to the cloud, it was all locally?
@lnk77
@lnk77 Жыл бұрын
@@fboucheros Maybe rught then when you create this video, You are not connected to azure, BUT YOUR CREDENTIALS ARE STOED ON THAT MACHINE
@fboucheros
@fboucheros Жыл бұрын
@@lnk77 You don't need an Azure account to reproduce this. I was on a linux laptop, running docker container locally. I could have done it on a disconnected computer that never saw Azure...
@andreasvanbergen9696
@andreasvanbergen9696 11 ай бұрын
@@fboucherosI see that in the 'About' section in Github the text is telling me that it is for Azure Databases. Maybe this is confusing since the data-api-builder also works on databases that don't live in Azure?...
@benaissaelbestani5041
@benaissaelbestani5041 Жыл бұрын
What happens if the function fail. How do you kick the job back to unzip the previous blob that failed?
@fboucheros
@fboucheros Жыл бұрын
you would need to implement a retry policy. Or delete the file and uploading it again.
@Roan1669
@Roan1669 Жыл бұрын
Hey Frank, how can I create a custom domain for a service I run in Kubernetes?
@nvindia1
@nvindia1 Жыл бұрын
But we cant use this approach if file size is more than 2.1MB
@fboucheros
@fboucheros Жыл бұрын
Only with Logic Apps the connector has a limit. However, you can use Azure Function have a look to the open-source project: github.com/FBoucher/AzUnzipEverything
@davidspencer3726
@davidspencer3726 Жыл бұрын
Thanks! Hey, what's the music in your intro/outro?
@fboucheros
@fboucheros Жыл бұрын
It's dream cloud or something like that. It was part of Camtasia library.
@fboucheros
@fboucheros Жыл бұрын
🔗 Blog post: c5m.ca/devDbToGo 🔗 Open at Microsoft: Copilot + Azure Data Studio: c5m.ca/DataStudioCopilot 🔗 Azure Data Studio QuickStarts: c5m.ca/DataStudioQuickstart
@syedadnan3406
@syedadnan3406 Жыл бұрын
Not able to access the git hub repository
@fboucheros
@fboucheros Жыл бұрын
Oops! I think I might have deleting it in a recent clean-up... Sorry.
@pradeepontube
@pradeepontube Жыл бұрын
Hello Frank, thanks for the earlier video. I have to set property of the field but which is part of array. I am getting this error "  InvalidTemplate. Unable to process template language expressions in action 'Compose' inputs at line '0' and column '0': 'The template language function 'setProperty' expects its first parameter to be of type object. The provided value is of type 'Array'.'.
@fboucheros
@fboucheros Жыл бұрын
Hmmm.. You may have to "play" with the quote and double quote....
@eddyfrey1430
@eddyfrey1430 Жыл бұрын
Bonjour, je voudrais utiliser AzCopy dans le cadre d'une migration de mailbox. Doit-on passer par la création d'un compte de stockage + conteneur blob afin de migrer le PST dessus dans un premier temps, puis de migrer du blob storage à l'URL donnée dans microsoft compliance. Ou peut-on passer directement du local à l'URL donnée dans microsoft compliance. Je ne trouve cette info nul part. Merci
@fboucheros
@fboucheros Жыл бұрын
Pour un Azure Blob storage ca devrait etre possible de local a url post: www.frankysnotes.com/2016/04/how-to-transfert-data-between-azure.html sinon il y a Azure Storage Explorer tres simple a utiliser.
@honestcommenter8424
@honestcommenter8424 Жыл бұрын
Will it still work if you deploy to Azure?
@fboucheros
@fboucheros Жыл бұрын
the Identity? yes
@honestcommenter8424
@honestcommenter8424 Жыл бұрын
@@fboucheros when I tried a simple blazor the Google sign in button appears and works locally, but when deployed to Azure the button doesn't even show up. Can you please make a tutorial on how to do it?
@finalfant111
@finalfant111 Жыл бұрын
Is Azcopy better than Azure File Sync? I am trying to find an alternative that copies changes as they happen and not enumerate every single file every night then copy changes. I am having an issue with AFS causing massive List Transaction everyday because of its enumeration.
@fboucheros
@fboucheros Жыл бұрын
AzCopy is a tool. It copy once. It won't Sync.
@brehiderpalacios3661
@brehiderpalacios3661 Жыл бұрын
Hello i have a website make in wordpress What template can take?
@fboucheros
@fboucheros Жыл бұрын
From the Azure portal in the search bar at the top type wordpress. You should have the suggestion you are looking for.
@JensChr.I.Thomsen
@JensChr.I.Thomsen Жыл бұрын
what if i have an existing blazor server app that uses database to login. can i add azure ad to that?
@fboucheros
@fboucheros Жыл бұрын
I'm pretty sure it will required some light refactoring... But that's and interesting migration project. I'll put that on the video ideas!
@ShyamRanjan-r9f
@ShyamRanjan-r9f Жыл бұрын
Hi @Frank can I download a file link directly to the blob bypassig local ?
@fboucheros
@fboucheros Жыл бұрын
cloud to cloud? yes
@victors9585
@victors9585 Жыл бұрын
Man you ROCK!!! 🔥🌟🔥🌟🔥 Je vous remercie beaucoup !!! 👏👏👏👏👏👏
@tinagray9605
@tinagray9605 Жыл бұрын
Does this method still works frank??
@fboucheros
@fboucheros Жыл бұрын
Yes.
@meghanamr3876
@meghanamr3876 Жыл бұрын
Could not find a better one than this! Thanks for the video :)
@sophieanne381
@sophieanne381 Жыл бұрын
You made it look so simple. Thanks!
@age.vampire9767
@age.vampire9767 Жыл бұрын
whats the config-zip here? is it gonna be same for any deployment
@fboucheros
@fboucheros Жыл бұрын
Good question @age.vampire9767 the config-zip is part of the command. It define the type of deployment you are doing. So YES it will be the same. Look here that specific command doc page: learn.microsoft.com/en-us/cli/azure/functionapp/deployment/source?view=azure-cli-latest#az-functionapp-deployment-source-config-zip
@jstump1972
@jstump1972 Жыл бұрын
As a azure tenant admin how do i search for any user using azure blob storage space across the board?
@fboucheros
@fboucheros Жыл бұрын
You mean you would like to list users that read something on any azure blob storage contained in a subscription?
@shatvani
@shatvani Жыл бұрын
Thank you for tutorial but I wonder how to configure/implement Azure AD SSO with Blazore WASM and Web API, please.
@edmunek
@edmunek Жыл бұрын
cloud in five minute. video is 13 minutes ...🤨
@fboucheros
@fboucheros Жыл бұрын
yep! 😂 I prefer going over than make it too "magical" and not showing how things works.
@kourosh234
@kourosh234 Жыл бұрын
Where do you add your account in administrator role?
@yoshithap8355
@yoshithap8355 Жыл бұрын
Hi, Thanks for this video. Can you tell me how to do the same operation if the zip file is password protected. That would be really helpful.
@fboucheros
@fboucheros Жыл бұрын
Check on the GitHub repo project. I believe that feature was added by someone from the community.