Protect Azure Function’s internal Storage via PrivateLink

Every Azure Function instance requires to have a Azure Storage Account for storing sensitive data – sometimes even source code of functions. Out of the box, this storage has enabled public endpoint. With PrivateLink, you can add an extra layer of protection.

Celý příspěvek Protect Azure Function’s internal Storage via PrivateLink

AWS SSO with Azure AD – Enterprise Adoption Tips

If you manage many AWS accounts in an enterprise environment, you probably feel the need for better user management and federate it with IdP (in my case with Azure Active Directory). In 2017 AWS has introduced a new way how to federate access – with an AWS SSO service. In this post, I would like to describe some properties of the solution you need to count on.

Celý příspěvek AWS SSO with Azure AD – Enterprise Adoption Tips

Make Azure Front Door Origin Secured with Private Link

For hosting a static website on Azure Storage Account with custom domain, you are required to use Azure CDN/Azure Front Door service, but there are limited options to protect your origin from bypassing CDN/WAF. Microsoft recently introduced a killer feature, which enables high-level protection of any origin including Storage Account, AppService or even some service running on VMs. Celý příspěvek Make Azure Front Door Origin Secured with Private Link

Run .exe Application in Azure Functions in Powerful Way

When you need to run some executable file/console application in cloud, you don’t want to run to take care about a VM/container. A lot of workloads can be made totally serverless with Azure Functions only – with tricks described in this post.

Celý příspěvek Run .exe Application in Azure Functions in Powerful Way

PR Crisis Microsite Deployed in Cloud in Few Hours

At Česko.Digital community, we helped to create a crisis information website for Czech Ministry of Health about the coronavirus outbreak in the Czech Republic. The website has since become one of the main information channels for all Czech citizens. This article describes how we modified the website with the Ministry’s IT dept. to handle expected load.

Celý příspěvek PR Crisis Microsite Deployed in Cloud in Few Hours

Sections in Azure App configuration as in appsettings.json

Do you have some Application settings in appsettings.json for App Service (or Azure Function) structured in sections? And do you know how to set up same structure as Application settings in Azure?

It’s easy – just write Application settings Key in format Section:MyAttribute

for appsettings.json:

{
  "myGreatApi": {
    "baseUrl": "https://localhost:7071/api/",
    "version": 2,
  }
}

will Application settings look like:

myGreatApi:baseUrl
myGreatApi:version