forked from rancher/terraform-rancher2-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversions.tf
More file actions
53 lines (53 loc) · 1.02 KB
/
versions.tf
File metadata and controls
53 lines (53 loc) · 1.02 KB
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
50
51
52
53
terraform {
required_version = ">= 1.5.0"
required_providers {
local = {
source = "hashicorp/local"
version = ">= 2.5"
}
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"
}
null = {
source = "hashicorp/null"
version = ">= 3"
}
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.14"
}
rancher2 = {
source = "rancher/rancher2"
version = ">= 5.0.0"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = ">= 2.31.0"
}
}
}