-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathversions.tf
More file actions
49 lines (49 loc) · 960 Bytes
/
versions.tf
File metadata and controls
49 lines (49 loc) · 960 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
terraform {
required_version = ">= 1.5.0"
required_providers {
file = {
source = "rancher/file"
version = ">= 2.2"
}
random = {
source = "hashicorp/random"
version = ">= 3.5.1"
}
github = {
source = "integrations/github"
version = ">= 5.44"
}
aws = {
source = "hashicorp/aws"
version = ">= 5.11"
}
http = {
source = "hashicorp/http"
version = ">= 3.4"
}
tls = {
source = "hashicorp/tls"
version = ">= 4.0"
}
acme = {
source = "vancluever/acme"
version = ">= 2.0"
}
cloudinit = {
source = "hashicorp/cloudinit"
version = ">= 2.3.3"
}
helm = {
source = "hashicorp/helm"
version = "2.16.1"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = ">= 2.31.0"
}
time = {
source = "hashicorp/time"
version = ">= 0.12.0"
}
}
}