mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-16 16:00:37 -05:00
* Use the apparentlymart/go-versions library to parse module constraints * goimports * Update comments, and parse versions carefully * add acceptance tests to verify behaviour of partial matches * goimports
9 lines
276 B
HCL
9 lines
276 B
HCL
# We expect this test to download the version 0.0.2, the one before the
|
|
# specified version even with the equality because the specified version is a
|
|
# prerelease.
|
|
|
|
module "acctest_partial" {
|
|
source = "hashicorp/module-installer-acctest/aws"
|
|
version = "<=0.0.3-alpha.1"
|
|
}
|