You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
482 B
22 lines
482 B
terraform {
|
|
required_providers {
|
|
cloudscale = {
|
|
source = "cloudscale-ch/cloudscale"
|
|
}
|
|
}
|
|
}
|
|
|
|
# Create a new server
|
|
resource "cloudscale_server" "ubo1" {
|
|
name = "ubo1"
|
|
flavor_slug = "flex-4-1"
|
|
image_slug = "debian-12"
|
|
volume_size_gb = 10
|
|
ssh_keys = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJl6TPTdcIoONUYBYFF7T96JJ1SNq9VeFOzR7LUNoFHJ ueli@Air-von-Ueli"]
|
|
|
|
timeouts {
|
|
create = "10m"
|
|
update = "1h"
|
|
}
|
|
}
|