forked from kubermatic/community-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterraform_libraries.tf
More file actions
45 lines (45 loc) · 857 Bytes
/
terraform_libraries.tf
File metadata and controls
45 lines (45 loc) · 857 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
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.1.0"
}
google = {
source = "hashicorp/google"
version = "~> 4.27.0"
}
vsphere = {
source = "hashicorp/vsphere"
version = "~> 2.1.1"
}
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.10.0"
}
helm = {
version = "~> 2.6"
}
null = {
version = "~> 3.0"
}
random = {
version = "~> 3.3.2"
source = "hashicorp/random"
}
tls = {
version = "~> 3.1"
}
kubermatic = {
version = "~> 0.1"
source = "kubermatic/kubermatic"
}
openstack = {
source = "terraform-provider-openstack/openstack"
version = "1.47.0"
}
time = {
source = "hashicorp/time"
version = "0.11.1"
}
}
}