forked from oracle-terraform-modules/terraform-oci-oke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversions.tf
39 lines (32 loc) · 807 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
# Copyright (c) 2017, 2023 Oracle Corporation and/or its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
terraform {
required_version = ">= 1.3.0"
required_providers {
cloudinit = {
source = "hashicorp/cloudinit"
version = ">= 2.2.0"
}
helm = {
source = "hashicorp/helm"
version = ">= 2.9.0"
}
null = {
source = "hashicorp/null"
version = ">= 3.2.1"
}
oci = {
configuration_aliases = [oci.home]
source = "oracle/oci"
version = ">= 4.119.0"
}
random = {
source = "hashicorp/random"
version = ">= 3.4.3"
}
time = {
source = "hashicorp/time"
version = ">= 0.9.1"
}
}
}