-
-
Notifications
You must be signed in to change notification settings - Fork 538
Expand file tree
/
Copy pathversions.tf
More file actions
34 lines (33 loc) · 682 Bytes
/
versions.tf
File metadata and controls
34 lines (33 loc) · 682 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
30
31
32
33
34
terraform {
required_version = ">= 1.10.1"
required_providers {
github = {
source = "integrations/github"
version = ">= 6.4.0"
}
hcloud = {
source = "hetznercloud/hcloud"
version = ">= 1.59.0"
}
local = {
source = "hashicorp/local"
version = ">= 2.5.2"
}
ssh = {
source = "loafoe/ssh"
version = "2.7.0"
}
assert = {
source = "hashicorp/assert"
version = ">= 0.16.0"
}
semvers = {
source = "anapsix/semvers"
version = ">= 0.7.1"
}
}
}
# Prevent provider picking up `GITHUB_TOKEN` env var and trying to authenticate
provider "github" {
token = ""
}