mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2025-02-10 15:39:13 +01:00
15 lines
363 B
Terraform
15 lines
363 B
Terraform
|
data "civo_ssh_key" "sshkey" {
|
||
|
name = "your-ssh-key-name"
|
||
|
}
|
||
|
|
||
|
resource "civo_instance" "server" {
|
||
|
hostname = "servername"
|
||
|
size = "g3.small"
|
||
|
disk_image = "ubuntu-focal"
|
||
|
# (optional):
|
||
|
# ---
|
||
|
# tags = ["python", "nginx"]
|
||
|
# notes = "this is a note for the server"
|
||
|
# initial_user = "user"
|
||
|
# sshkey_id = data.civo_ssh_key.sshkey.id
|
||
|
}
|