-
Notifications
You must be signed in to change notification settings - Fork 0
/
versions.tf
66 lines (52 loc) · 1019 Bytes
/
versions.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.79.0"
}
github = {
source = "integrations/github"
version = "6.3.1"
}
google = {
source = "hashicorp/google"
version = "6.11.1"
}
http = {
source = "hashicorp/http"
version = "3.4.5"
}
local = {
source = "hashicorp/local"
version = "2.5.2"
}
opsgenie = {
source = "opsgenie/opsgenie"
version = "0.6.37"
}
random = {
source = "hashicorp/random"
version = "3.6.3"
}
tfe = {
source = "hashicorp/tfe"
version = "0.60.0"
}
time = {
source = "hashicorp/time"
version = "0.12.1"
}
tls = {
source = "hashicorp/tls"
version = "4.0.6"
}
vault = {
source = "hashicorp/vault"
version = "3.24.0"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "2.24.0"
}
}
}