Jan-Henrik Damaschke

Jan-Henrik Damaschke is Senior Cloud Architect and CTO at Visorian. He is an Azure MVP for Cloud Native and Infrastructure as Code and was MVP awarded in the categories Enterprise Security and PowerShell. Jan-Henrik is involved in many community events as speaker as well as organizer. His passion is to share knowledge and therefore he has written articles and books on Azure solutions, is actively maintaining and contributing to multiple Open Source projects and is the organizer of the Azure Meetup Hamburg.

Recent articles

Azure, Azure Container Registry

Solve your container root certificate trust issues with Azure Container Registry tasks

When working with internal container deployments, there are many cases, where applications need to access an internal HTTPS service. If these services use internal certificates from an internal certificate authority (CA), the client (container/pod) needs to trust the certificate chain including the Sub/Issuing CA certificate and the Root CA certificate. These certificates have to be added to the trusted ROOT CA store, which should not be done at runtime (hence not with a sidecar container or similar constructs). The solution to this problem would be to add them at build time. We will discover how this process can be simplified and automated by using Azure Container Registry (ACR) tasks.
Jan-Henrik Damaschke
Azure

Getting started with Azure Static Web Apps

At Microsoft Build 2020 lots of new updates and services were announced. Today we will take a look at a specific one that I am pretty excited about, Static Web Apps. Read on to learn what it is, how to use it and and why it helps us to reduce effort when deploying web applications to Microsoft Azure.
Jan-Henrik Damaschke
Azure

Link shortener service with Azure Functions and PowerShell

I recently had to write some code to provide a one time link functionality, where links will be invalidated and the underlying files will be deleted as soon as they are accessed once. This brought me to the idea, we will take a look at today. I basically wanted to create a REST API for a link shortener service.
Jan-Henrik Damaschke
Azure, Azure Sentinel

Azure Sentinel Introduction

Azure Sentinel is Microsoft's security information and event management (SIEM) and security orchestration, automation and response (SOAR) offering for modern SecOps. Now with the announced General Availability of Azure Sentinel, we will take a look and the current features, what changed from the preview and where there is still room for improvement.
Jan-Henrik Damaschke
Azure

Use multiple public IP addresses in Azure VM

Sometimes multiple external IP address on an Azure Virtual Machine (VM) are needed for a deployed application or script. We will setup a multi NIC VM with one public IP per interface and route some traffic through different interfaces.
Jan-Henrik Damaschke
PowerShell

Load PowerShell assemblies from nuget packages

PowerShell can manage NuGet packages since a few years now, but loading a dll, which is part of a installed NuGet package in PowerShell is not that intuitive.
Jan-Henrik Damaschke