mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-22 10:01:39 -04:00
14 lines
333 B
HCL
14 lines
333 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.
|
|
#
|
|
# Registry versions are:
|
|
# - 0.0.3-alpha.1
|
|
# - 0.0.2
|
|
# - 0.0.1
|
|
|
|
module "acctest" {
|
|
source = "hashicorp/module-installer-acctest/aws"
|
|
version = "<=0.0.3-alpha.1"
|
|
}
|