The Azure Management Library version 1.1 was just released and includes the ability to manage CosmosDB (formerly known as DocumentDB), Azure Container Service and Registry, and Active Directory Graph. Go to the official announcement for more information and sample code.
Handling RBAC using Azure Management Libraries
If you have been using Azure for any length of time, you know Azure has a concept of Role-Based Access Control (RBAC) which allows you to fine tune who can access what resources (read Get Started with Role-Based Access Control in the Azure portal for more information). This is done by granting various roles to […]
Accessing .Net Core APIs from Angular2 using Azure AD
Introduction I am currently writing a demo application for the Azure Management Library and wanted to make it secure (after all the security file could grant the same rights as the Administrator). I also wanted to make it a Single Page Application (SPA) since 1) I have been doing a lot of work with Angular2 […]
Dependency Injection in a nutshell
I was working with a new developer on one of my contracts who could not seem to grasp the concept of Dependency Injection. According to Wikipedia, “Dependency injection separates the creation of a client’s dependencies from the client’s behavior, which allows program designs to be loosely coupled and to follow the dependency inversion and single […]