Hi there 馃憢

Welcome to my blog

Deploy MSSQL Server with Pulumi in Azure

Introduction This is the second part of my series explaining Pulumi using C#. In the first post, you got a brief introduction to the basics. This time, I want to showcase how to deploy an Azure SQL Server instance with a database. For validation, I will restrict database access to my current IP address. Additionally, as preparation for Keycloak, the database will include a separate user. There are three main components to set up: ...

December 22, 2024 路 8 min 路 1572 words 路 Ralf Gn盲dinger

Use Infrastructure as Code

Introduction Have you ever worked with cloud environments and realized how time-consuming it can be to set them up and develop quickly, consistently, securely, and, above all, reproducibly? There are many tools available to help. Some are provider-specific, such as CloudFormation for AWS or Bicep for Azure. Others, like the well-known Terraform and its open-source successor OpenTofu, support multiple cloud service providers. Most of these tools use a domain-specific language (DSL) to define your environment. They offer robust toolsets to ensure security and consistency. While useful, learning another language and tackling its complexities can be a drawback. ...

December 18, 2024 路 5 min 路 870 words 路 Ralf Gn盲dinger

Rds Import Bacpac

Have you ever tried to import a BACPAC file into an RDS Microsoft Sql Server instance? Than you might experienced the same issue, that the import process was aborted and the added database was inaccessible. Import Error To understand what causes this issue, we have to understand what a BACPAC is. In the documentation from Microsoft they explain it like this: A BACPAC file is a ZIP file with an extension of BACPAC containing the metadata and data from the database.1 ...

May 8, 2021 路 2 min 路 292 words 路 Ralf Gn盲dinger

How to improve your Workstation setup

Typically, you don鈥檛 install your operating system and all the tools too often. However, I had to do that exactly several times in the past two months. The first time is still exciting, because you deal with the new functions and tools. The second time at the latest, the work through the configuration is annoying. With this article I want to show how you can (partially) automate the installation and configuration of your tools and thus achieve a repoducible working environment. ...

February 22, 2021 路 3 min 路 584 words 路 Ralf Gn盲dinger