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

14
tf-infra/contabo.tf Normal file
View file

@ -0,0 +1,14 @@
resource "contabo_instance" "vps1" {
display_name = "vps1"
product_id = "V1"
image_id = data.contabo_image.ubuntu_22_04.id
}
resource "contabo_instance" "vps2" {
display_name = "vps2"
product_id = "V1"
}
data "contabo_image" "ubuntu_22_04" {
id = "afecbb85-e2fc-46f0-9684-b46b1faf00bb"
}