Skip to content

Commit 18f0d35

Browse files
committed
add some version constraints
1 parent e5005e4 commit 18f0d35

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

_examples/aks/main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ terraform {
22
required_providers {
33
kubernetes = {
44
source = "hashicorp/kubernetes"
5+
version = ">= 2.0.0"
56
}
67
azurerm = {
78
source = "hashicorp/azurerm"
89
version = "2.42"
910
}
1011
helm = {
1112
source = "hashicorp/helm"
12-
version = "2.0.1"
13+
version = ">= 2.0.1"
1314
}
1415
}
1516
}

_examples/eks/main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ terraform {
22
required_providers {
33
kubernetes = {
44
source = "hashicorp/kubernetes"
5+
version = ">= 2.0.0"
56
}
67
helm = {
78
source = "hashicorp/helm"
8-
version = "2.0.1"
9+
version = ">= 2.0.1"
910
}
1011
aws = {
1112
source = "hashicorp/aws"

_examples/gke/main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ terraform {
22
required_providers {
33
kubernetes = {
44
source = "hashicorp/kubernetes"
5+
version = ">= 2.0.0"
56
}
67
google = {
78
source = "hashicorp/google"
89
version = "3.52"
910
}
1011
helm = {
1112
source = "hashicorp/helm"
12-
version = "2.0.1"
13+
version = ">= 2.0.1"
1314
}
1415
}
1516
}

0 commit comments

Comments
 (0)