Skip to content

Commit

Permalink
add some version constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
dak1n1 committed Jan 21, 2021
1 parent e5005e4 commit 18f0d35
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion _examples/aks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ terraform {
required_providers {
kubernetes = {
source = "hashicorp/kubernetes"
version = ">= 2.0.0"
}
azurerm = {
source = "hashicorp/azurerm"
version = "2.42"
}
helm = {
source = "hashicorp/helm"
version = "2.0.1"
version = ">= 2.0.1"
}
}
}
Expand Down
3 changes: 2 additions & 1 deletion _examples/eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ terraform {
required_providers {
kubernetes = {
source = "hashicorp/kubernetes"
version = ">= 2.0.0"
}
helm = {
source = "hashicorp/helm"
version = "2.0.1"
version = ">= 2.0.1"
}
aws = {
source = "hashicorp/aws"
Expand Down
3 changes: 2 additions & 1 deletion _examples/gke/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ terraform {
required_providers {
kubernetes = {
source = "hashicorp/kubernetes"
version = ">= 2.0.0"
}
google = {
source = "hashicorp/google"
version = "3.52"
}
helm = {
source = "hashicorp/helm"
version = "2.0.1"
version = ">= 2.0.1"
}
}
}
Expand Down

0 comments on commit 18f0d35

Please sign in to comment.