Skip to content

Commit

Permalink
Merge pull request #63 from vasubabu/VK_module_name
Browse files Browse the repository at this point in the history
Add provider meta module_name in Equinix Metal TF configs
  • Loading branch information
ocobles authored May 17, 2023
2 parents b5b6881 + e86dc7b commit e5c6e52
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modules/longhorn/examples/simple/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
equinix = {
source = "equinix/equinix"
version = ">= 1.11.1"
version = "~> 1.14"
}
helm = {
source = "hashicorp/helm"
Expand Down
2 changes: 1 addition & 1 deletion modules/portworx/examples/simple/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ terraform {
required_providers {
equinix = {
source = "equinix/equinix"
version = ">= 1.11.1"
version = "~> 1.14"
}
}
}
7 changes: 5 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
terraform {
required_version = ">= 1.0.0"

provider_meta "equinix" {
# Set the name of the module below
module_name = "equinix-kubernetes-addons"
}
required_providers {
equinix = {
source = "equinix/equinix"
version = ">= 1.11.1"
version = "~> 1.14"
}
helm = {
source = "hashicorp/helm"
Expand Down

0 comments on commit e5c6e52

Please sign in to comment.