Skip to content

Commit c3a3214

Browse files
committed
normalization of the providers
Signed-off-by: junior <junior@users.noreply.github.com>
1 parent c0e45f0 commit c3a3214

File tree

3 files changed

+36
-36
lines changed

3 files changed

+36
-36
lines changed

modules/cluster-tools/providers.tf

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,33 +7,33 @@ terraform {
77
required_providers {
88
oci = {
99
source = "oracle/oci"
10-
version = ">= 4.88.1"
11-
# https://registry.terraform.io/providers/oracle/oci/4.88.1
10+
version = "~> 4"
11+
# https://registry.terraform.io/providers/oracle/oci/
1212
}
1313
kubernetes = {
1414
source = "hashicorp/kubernetes"
15-
version = "~> 2.12.1"
16-
# https://registry.terraform.io/providers/hashicorp/kubernetes/2.12.1
15+
version = "~> 2"
16+
# https://registry.terraform.io/providers/hashicorp/kubernetes/
1717
}
1818
helm = {
1919
source = "hashicorp/helm"
20-
version = "~> 2.6.0"
21-
# https://registry.terraform.io/providers/hashicorp/helm/2.6.0
20+
version = "~> 2"
21+
# https://registry.terraform.io/providers/hashicorp/helm/
2222
}
2323
tls = {
2424
source = "hashicorp/tls"
25-
version = "~> 4.0.1"
26-
# https://registry.terraform.io/providers/hashicorp/tls/4.0.1
25+
version = "~> 4"
26+
# https://registry.terraform.io/providers/hashicorp/tls/
2727
}
2828
local = {
2929
source = "hashicorp/local"
30-
version = "~> 2.2.3"
31-
# https://registry.terraform.io/providers/hashicorp/local/2.2.3
30+
version = "~> 2"
31+
# https://registry.terraform.io/providers/hashicorp/local/
3232
}
3333
random = {
3434
source = "hashicorp/random"
35-
version = "~> 3.3.2"
36-
# https://registry.terraform.io/providers/hashicorp/random/3.3.2
35+
version = "~> 3"
36+
# https://registry.terraform.io/providers/hashicorp/random/
3737
}
3838
}
3939
}

modules/oke/providers.tf

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,34 +7,34 @@ terraform {
77
required_providers {
88
oci = {
99
source = "oracle/oci"
10-
version = ">= 4.88.1"
11-
# https://registry.terraform.io/providers/oracle/oci/4.88.1
10+
version = "~> 4"
11+
# https://registry.terraform.io/providers/oracle/oci/
1212
configuration_aliases = [oci.home_region]
1313
}
1414
kubernetes = {
1515
source = "hashicorp/kubernetes"
16-
version = "~> 2.12.1"
17-
# https://registry.terraform.io/providers/hashicorp/kubernetes/2.12.1
16+
version = "~> 2"
17+
# https://registry.terraform.io/providers/hashicorp/kubernetes/
1818
}
1919
helm = {
2020
source = "hashicorp/helm"
21-
version = "~> 2.6.0"
22-
# https://registry.terraform.io/providers/hashicorp/helm/2.6.0
21+
version = "~> 2"
22+
# https://registry.terraform.io/providers/hashicorp/helm/
2323
}
2424
tls = {
2525
source = "hashicorp/tls"
26-
version = "~> 4.0.1"
27-
# https://registry.terraform.io/providers/hashicorp/tls/4.0.1
26+
version = "~> 4"
27+
# https://registry.terraform.io/providers/hashicorp/tls/
2828
}
2929
local = {
3030
source = "hashicorp/local"
31-
version = "~> 2.2.3"
32-
# https://registry.terraform.io/providers/hashicorp/local/2.2.3
31+
version = "~> 2"
32+
# https://registry.terraform.io/providers/hashicorp/local/
3333
}
3434
random = {
3535
source = "hashicorp/random"
36-
version = "~> 3.3.2"
37-
# https://registry.terraform.io/providers/hashicorp/random/3.3.2
36+
version = "~> 3"
37+
# https://registry.terraform.io/providers/hashicorp/random/
3838
}
3939
}
4040
}

providers.tf

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,33 +7,33 @@ terraform {
77
required_providers {
88
oci = {
99
source = "oracle/oci"
10-
version = ">= 4.88.1"
11-
# https://registry.terraform.io/providers/oracle/oci/4.88.1
10+
version = "~> 4, < 5"
11+
# https://registry.terraform.io/providers/oracle/oci/
1212
}
1313
kubernetes = {
1414
source = "hashicorp/kubernetes"
15-
version = "~> 2.12.1"
16-
# https://registry.terraform.io/providers/hashicorp/kubernetes/2.12.1
15+
version = "~> 2"
16+
# https://registry.terraform.io/providers/hashicorp/kubernetes/
1717
}
1818
helm = {
1919
source = "hashicorp/helm"
20-
version = "~> 2.6.0"
21-
# https://registry.terraform.io/providers/hashicorp/helm/2.6.0
20+
version = "~> 2"
21+
# https://registry.terraform.io/providers/hashicorp/helm/
2222
}
2323
tls = {
2424
source = "hashicorp/tls"
25-
version = "~> 4.0.1"
26-
# https://registry.terraform.io/providers/hashicorp/tls/4.0.1
25+
version = "~> 4"
26+
# https://registry.terraform.io/providers/hashicorp/tls/
2727
}
2828
local = {
2929
source = "hashicorp/local"
30-
version = "~> 2.2.3"
31-
# https://registry.terraform.io/providers/hashicorp/local/2.2.3
30+
version = "~> 2"
31+
# https://registry.terraform.io/providers/hashicorp/local/
3232
}
3333
random = {
3434
source = "hashicorp/random"
35-
version = "~> 3.3.2"
36-
# https://registry.terraform.io/providers/hashicorp/random/3.3.2
35+
version = "~> 3"
36+
# https://registry.terraform.io/providers/hashicorp/random/
3737
}
3838
}
3939
}

0 commit comments

Comments
 (0)