mirror of
https://github.com/apricote/home-cloud.git
synced 2026-01-13 13:01:03 +00:00
22 lines
242 B
Terraform
22 lines
242 B
Terraform
|
|
variable host {
|
||
|
|
type = "string"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable type {
|
||
|
|
type = "string"
|
||
|
|
default = "ipv4"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable server_id {
|
||
|
|
type = "string"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable server_ip {
|
||
|
|
type = "string"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable location {
|
||
|
|
type = "string"
|
||
|
|
default = "nbg1"
|
||
|
|
}
|