Skip to content

Commit

Permalink
Updated the Version Constraint Syntax to "~>" to allow only the right…
Browse files Browse the repository at this point in the history
…most version component to increment in the Terraform Modules. The main.tf and README files were updated across all of the VCD Modules.
  • Loading branch information
scafeman committed May 16, 2023
1 parent 642ab09 commit 44660fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ This Terraform module will deploy Virtual Machines into an existing Virtual Appl

| Name | Version |
|------|---------|
| terraform | >= 1.2 |
| vcd | >= 3.8.2 |
| terraform | ~> 1.2 |
| vcd | ~> 3.8.2 |

This Module depends on a vApp already being created in your Virtual Data Center. You can use the [vcd_vapp](https://github.com/global-vmware/vcd_vapp) Module to create the vApp that will be used to provision your VM's into.

Expand Down
6 changes: 3 additions & 3 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
terraform {
required_version = ">= 1.2"
required_version = "~> 1.2"

required_providers {
vcd = {
source = "vmware/vcd"
version = ">= 3.8.2"
source = "vmware/vcd"
version = "~> 3.8"
}
}
}
Expand Down

0 comments on commit 44660fa

Please sign in to comment.