Terraform & OpenTofu
Der Standard für Enterprise-Infrastrukturen.
Automatisiert. Multi-Tool. Auditierbar.

Unsere Tools
Der Standard für Enterprise-Infrastrukturen.
IaC mit TypeScript, Python, Go oder .NET.
Cloud-native IaC-Frameworks direkt von AWS & Microsoft.
Deklarative Cloud-Ressourcen über Kubernetes.
Automatisierung & Konfiguration für Hybrid-Umgebungen.
Azure Bicep, Helm, Kustomize – wir beraten herstellerneutral.
Beispiele
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" }
} Änderungen erkennen, State sperren, Artifacts erstellen.
Linting, Unit-Tests, Security-Checks (tfsec/Checkov).
OPA/Sentinel Gate – nur konforme Pläne gehen weiter.
Idempotentes Apply, Notifikation, Runbooks & Rollback.
Use Cases
Standardisierte AWS-, Azure- oder GCP-Umgebungen als sichere Ausgangsbasis.
Von Lift-and-Shift bis Re-Platforming: beschleunigte Migration ohne Chaos.
Sicherheit wird in Code gegossen – kein späteres Add-on.
Produktionsreife Cluster in Minuten statt Tagen.
Wir arbeiten mit allen relevanten Tools und Clouds.
Thinkport liefert praxiserprobte Patterns für Terraform, Pulumi, CDK & Co. – schnell, sicher und teamfähig.