Skip to content

Commit

Permalink
Add provider meta module_name in Equinix Metal TF configs
Browse files Browse the repository at this point in the history
  • Loading branch information
codinja1188 committed May 4, 2023
1 parent 865985f commit 3daee4b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
9 changes: 7 additions & 2 deletions examples/cpem-add-on/versions.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
terraform {
provider_meta "equinix" {
# Set the name of the module below
module_name = "quinix-kubernetes-cluster/cpem-add-on"
}

required_providers {
equinix = {
source = "equinix/equinix"
version = ">= 1.10"
version = ">= 1.11.0"
}
}
required_version = ">= 1"
required_version = ">= 1.0.0"
}
6 changes: 6 additions & 0 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
terraform {
provider_meta "equinix" {
# Set the name of the module below
module_name = "equinix-kubernetes-cluster"
}

required_providers {
equinix = {
source = "equinix/equinix"
version = "1.14.1"
}
}
required_version = ">= 1.0.0"
}

0 comments on commit 3daee4b

Please sign in to comment.