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 bb20b4c commit f710b0d
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 Applications (vApps) into an existing

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

## Resources

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 f710b0d

Please sign in to comment.