This commit is contained in:
nora 2024-02-04 17:34:37 +01:00
parent dbd662821b
commit add27f054a
6 changed files with 98 additions and 0 deletions

16
tf-infra/versions.tf Normal file
View file

@ -0,0 +1,16 @@
terraform {
required_providers {
contabo = {
source = "contabo/contabo"
version = "~> 0.1.23"
}
aws = {
source = "hashicorp/aws"
version = "~> 5.35.0"
}
}
}
provider "aws" {
region = "eu-central-1"
}