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 4fcdd43 commit c14c610
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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 DHCP Pools for Routed Data Center Group Networ

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

## Resources

Expand Down
4 changes: 2 additions & 2 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"
version = "~> 3.8"
}
}
}
Expand Down

0 comments on commit c14c610

Please sign in to comment.