Skip to content

Commit

Permalink
Merge pull request #24 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
ctreatma authored May 11, 2023
2 parents 5044c4a + 293e1c1 commit 3094f99
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
6 changes: 5 additions & 1 deletion modules/bastion/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@ terraform {
required_providers {
equinix = {
source = "equinix/equinix"
version = "~> 1.14"
}
null = {
source = "hashicorp/null"
}
}
required_version = ">= 0.14"
required_version = ">= 1.0.0"
provider_meta "equinix" {
module_name = "equinix-metal-openshift-on-baremetal/bastion"
}
}
6 changes: 5 additions & 1 deletion modules/node/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ terraform {
required_providers {
equinix = {
source = "equinix/equinix"
version = "~> 1.14"
}
}
required_version = ">= 0.14"
required_version = ">= 1.0.0"
provider_meta "equinix" {
module_name = "equinix-metal-openshift-on-baremetal/node"
}
}
6 changes: 5 additions & 1 deletion modules/sshkey/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ terraform {
required_providers {
equinix = {
source = "equinix/equinix"
version = "~> 1.14"
}
}
required_version = ">= 0.13"
required_version = ">= 1.0.0"
provider_meta "equinix" {
module_name = "equinix-metal-openshift-on-baremetal/sshkey"
}
}
7 changes: 5 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,14 @@ terraform {

equinix = {
source = "equinix/equinix"
version = "1.14.1"
version = "~> 1.14"
}
null = {
source = "hashicorp/null"
}
}
required_version = ">= 1"
required_version = ">= 1.0.0"
provider_meta "equinix" {
module_name = "equinix-metal-openshift-on-baremetal"
}
}

0 comments on commit 3094f99

Please sign in to comment.