Thumbnail

5 nifty Azure Bicep tips and tricks

Bicep is a domain-specific language (DSL) that uses declarative syntax to deploy Azure resources. In other words: it’s the language we use to declare our Azure resources and their configuration, before we hand it over to the Azure Resource Manager (ARM) to take over the deployment. You might have heard of ARM templates, which is the underlying framework based on JSON.

Read more

Thumbnail

What are Managed Identities?

With the introduction of Managed Identities came many security options. Among other things, manual credential management is no longer necessary, this is taken over by Azure.

Different scripts are often required for matters such as operation, provisioning, housekeeping, etc., which need to authenticate and communicate with different API’s in a secury way. Usually, this requires a service principal (Azure AD app registration) secured by a secret or certificate, which in turn should be stored securely and rotated regularly.

Read more