Infrastructure as Code

Automatisiert. Multi-Tool. Auditierbar.

Hero Image

Unsere Tools

Multi-Tool, Multi-Cloud – wir beherrschen die ganze IaC-Welt

Terraform & OpenTofu

Der Standard für Enterprise-Infrastrukturen.

Pulumi

IaC mit TypeScript, Python, Go oder .NET.

AWS & Azure CDK

Cloud-native IaC-Frameworks direkt von AWS & Microsoft.

Crossplane

Deklarative Cloud-Ressourcen über Kubernetes.

Ansible

Automatisierung & Konfiguration für Hybrid-Umgebungen.

Bicep & weitere

Azure Bicep, Helm, Kustomize – wir beraten herstellerneutral.

Beispiele

So sieht IaC in Aktion aus

main.tf
provider "aws" { region = "eu-central-1" }

resource "aws_vpc" "main" {
  cidr_block = "10.42.0.0/16"
}

resource "aws_subnet" "public" {
  vpc_id                  = aws_vpc.main.id
  cidr_block              = "10.42.1.0/24"
  map_public_ip_on_launch = true
}

resource "aws_security_group" "vm" {
  name        = "vm-sg"
  description = "SSH"
  vpc_id      = aws_vpc.main.id
  ingress { from_port = 22 to_port = 22 protocol = "tcp" cidr_blocks = ["0.0.0.0/0"] }
  egress  { from_port = 0  to_port = 0  protocol = "-1"  cidr_blocks = ["0.0.0.0/0"] }
}

data "aws_ami" "al2023" {
  most_recent = true
  owners      = ["amazon"]
  filter { name = "name" values = ["al2023-ami-*"] }
}

resource "aws_instance" "vm" {
  ami                    = data.aws_ami.al2023.id
  instance_type          = "t3.micro"
  subnet_id              = aws_subnet.public.id
  vpc_security_group_ids = [aws_security_group.vm.id]
  tags = { Name = "iac-demo" }
}
TerraformVPCEC2

Unser IaC-Delivery-Loop

Step 1
Plan

Änderungen erkennen, State sperren, Artifacts erstellen.

Step 2
Validate

Linting, Unit-Tests, Security-Checks (tfsec/Checkov).

Step 3
Policy

OPA/Sentinel Gate – nur konforme Pläne gehen weiter.

Step 4
Apply

Idempotentes Apply, Notifikation, Runbooks & Rollback.

Use Cases

Wo Infrastructure as Code bei Ihnen Wirkung entfaltet

Landing Zones

Standardisierte AWS-, Azure- oder GCP-Umgebungen als sichere Ausgangsbasis.

  • Governance & Security ab Tag 1 integriert
  • Automatisiertes Networking & Identity Management
  • Beschleunigter Rollout neuer Workloads
Migration

Von Lift-and-Shift bis Re-Platforming: beschleunigte Migration ohne Chaos.

  • Wiederholbare IaC-Module für saubere Workloads
  • Transparente Audit-Trails für Compliance
  • Skalierbarkeit & Kostensicherheit
Security

Sicherheit wird in Code gegossen – kein späteres Add-on.

  • Zero Trust Architektur von Anfang an
  • Secrets Management integriert
  • Policies & Compliance-Tests als Code
Kubernetes

Produktionsreife Cluster in Minuten statt Tagen.

  • Automatisiertes Bootstrapping & GitOps Pipelines
  • Observability-Stacks out-of-the-box
  • Crossplane/Helm für maximale Portabilität

Ökosystem & Partner

Wir arbeiten mit allen relevanten Tools und Clouds.

Bereit für Infrastructure as Code?
Wir bringen Sie auf das nächste Level.

Thinkport liefert praxiserprobte Patterns für Terraform, Pulumi, CDK & Co. – schnell, sicher und teamfähig.