-
-
Notifications
You must be signed in to change notification settings - Fork 541
Expand file tree
/
Copy pathversions.tf
More file actions
29 lines (29 loc) · 559 Bytes
/
versions.tf
File metadata and controls
29 lines (29 loc) · 559 Bytes
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
terraform {
required_version = ">= 1.10.1"
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = ">= 1.59.0"
}
local = {
source = "hashicorp/local"
version = ">= 2.5.2"
}
http = {
source = "hashicorp/http"
version = ">= 3.5.0"
}
ssh = {
source = "loafoe/ssh"
version = "2.7.0"
}
assert = {
source = "hashicorp/assert"
version = ">= 0.16.0"
}
semvers = {
source = "anapsix/semvers"
version = ">= 0.7.1"
}
}
}