Skip to content

Commit 5ac9a58

Browse files
committed
Add explicit required_providers configuration
Run `terraform 0.13upgrade` to add explicit `required_providers` configuration. See https://www.terraform.io/language/upgrade-guides/0-13#explicit-provider-source-locations This stops warnings being generated when module users configure multiple instances of the vsphere provider with `alias`es
1 parent 59e248d commit 5ac9a58

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

versions.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
terraform {
22
required_version = ">= 0.13.4"
3+
required_providers {
4+
vsphere = {
5+
source = "hashicorp/vsphere"
6+
}
7+
}
38
}

0 commit comments

Comments
 (0)