Skip to content

Commit

Permalink
build(deps): migrate kubernetes provider to >= 2.0.0 (#9)
Browse files Browse the repository at this point in the history
* upgrade Kubernetes Terraform provider version
  • Loading branch information
sbeginCoveo authored May 4, 2021
1 parent 2799fd5 commit b15ff07
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.1-dev
1.0.0-dev
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ resource "kubernetes_daemonset" "lacework_datacollector" {
image_pull_policy = var.lacework_image_pull_policy

resources {
requests {
requests = {
cpu = var.pod_cpu_request
memory = var.pod_mem_request
}
limits {
limits = {
cpu = var.pod_cpu_limit
memory = var.pod_mem_limit
}
Expand Down
3 changes: 1 addition & 2 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ terraform {
required_version = ">= 0.12.0"

required_providers {
kubernetes = "~> 1.13.3"
random = ">= 2.1"
kubernetes = ">= 2.0.0"
}
}

0 comments on commit b15ff07

Please sign in to comment.