Skip to content

Commit

Permalink
chore(deps): update terraform equinix to v2 (#67)
Browse files Browse the repository at this point in the history
* chore(deps): update terraform equinix to v2

* update example tf provider versions too

* upgrade addons module to fix version constraint mismatch

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Charles Treatman <[email protected]>
  • Loading branch information
renovate[bot] and ctreatma authored Jul 3, 2024
1 parent 4d6bf7e commit 14fe8f6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/cluster-with-cni/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
equinix = {
source = "equinix/equinix"
version = "~> 1.20.0"
version = "~> 2.0.0"
}

null = {
Expand Down
2 changes: 1 addition & 1 deletion examples/cpem-add-on/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ provider "equinix" {

module "kubernetes_addons" {
source = "equinix-labs/kubernetes-addons/equinix"
version = "0.4.0"
version = "0.5.0"

ssh_user = replace("root", module.tfk8s.kubeconfig_ready, "")
ssh_private_key = var.ssh_private_key_path == "" ? join("\n", [chomp(module.tfk8s.ssh_key_pair[0].private_key_openssh), ""]) : chomp(file(var.ssh_private_key_path))
Expand Down
2 changes: 1 addition & 1 deletion examples/cpem-add-on/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
equinix = {
source = "equinix/equinix"
version = "~> 1.20.0"
version = "~> 2.0.0"
}
}
required_version = ">= 1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
equinix = {
source = "equinix/equinix"
version = "~> 1.20.0"
version = "~> 2.0.0"
}
tls = {
source = "hashicorp/tls"
Expand Down

0 comments on commit 14fe8f6

Please sign in to comment.