mirror of
https://github.com/Noratrieb/vps.git
synced 2026-01-14 16:55:00 +01:00
14 lines
310 B
HCL
14 lines
310 B
HCL
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"
|
|
}
|