-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversions.tf
39 lines (38 loc) · 1.11 KB
/
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) 2024, Oracle and/or its affiliates. All rights reserved.
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
#
terraform {
required_version = ">= 1.2" #>= 1.6 when using OpenTofu
required_providers {
oci = {
source = "oracle/oci"
version = ">= 5, < 6"
# https://registry.terraform.io/providers/oracle/oci/
}
tls = {
source = "hashicorp/tls"
version = ">= 4"
# https://registry.terraform.io/providers/hashicorp/tls/
}
local = {
source = "hashicorp/local"
version = ">= 2.5"
# https://registry.terraform.io/providers/hashicorp/local/
}
random = {
source = "hashicorp/random"
version = ">= 3.6"
# https://registry.terraform.io/providers/hashicorp/random/
}
cloudinit = {
source = "hashicorp/cloudinit"
version = ">= 2.3"
# https://registry.terraform.io/providers/hashicorp/cloudinit/
}
null = {
source = "hashicorp/null"
version = ">= 3"
# https://registry.terraform.io/providers/hashicorp/cloudinit/
}
}
}