You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/command/testdata/init-get-providers/main.tf

15 lines
281 B

provider "exact" {
version = "1.2.3"
}
provider "greater-than" {
version = ">= 2.3.3"
}
provider "between" {
# The second constraint here intentionally has
# no space after the < operator to make sure
# that we can parse that form too.
version = "> 1.0.0 , <3.0.0"
}