-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
44 lines (36 loc) · 817 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
terraform {
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = "~> 1.45"
}
}
}
variable "hcloud_token" {
description = "Hetzner Cloud API token"
type = string
sensitive = true
}
variable "public_ssh_key" {
description = "SSH public key for accessing instances"
type = string
}
variable "public_ssh_key_name" {
description = "Name for the SSH key"
type = string
}
variable "location" {
description = "Location for the servers"
type = string
default = "ash"
}
variable "network_zone" {
description = "Network zone for the network"
type = string
default = "us-east"
}
variable "image" {
description = "Image for the servers"
type = string
default = "ubuntu-24.04"
}