Skip to content

Commit

Permalink
add kubectl back using fuzzy operator
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Jul 23, 2024
1 parent 50c8a2a commit e88ba4d
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions requirements.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,19 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 5.14.0"
version = "~> 5.14.0"
}
helm = {
source = "hashicorp/helm"
version = ">= 2.11.0"
version = "~> 2.11.0"
}
kubectl = {
source = "hashicorp/kubectl"
version = "~> 1.14.0"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = ">= 2.23.0"
version = "~> 2.23.0"
}

}
Expand Down

0 comments on commit e88ba4d

Please sign in to comment.