mirror of
https://github.com/apricote/home-cloud.git
synced 2026-01-13 13:01:03 +00:00
23 lines
276 B
Terraform
23 lines
276 B
Terraform
|
|
variable name {
|
||
|
|
type = "string"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable image {
|
||
|
|
type = "string"
|
||
|
|
default = "ubuntu-18.04"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable server_type {
|
||
|
|
type = "string"
|
||
|
|
default = "cx11"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable location {
|
||
|
|
type = "string"
|
||
|
|
default = "nbg1"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable ssh_key_id {
|
||
|
|
type = "string"
|
||
|
|
}
|