github.com/graywolf-at-work-2/terraform-vendor@v1.4.5/internal/command/testdata/init-get-providers/main.tf (about) 1 provider "exact" { 2 version = "1.2.3" 3 } 4 5 provider "greater-than" { 6 version = ">= 2.3.3" 7 } 8 9 provider "between" { 10 # The second constraint here intentionally has 11 # no space after the < operator to make sure 12 # that we can parse that form too. 13 version = "> 1.0.0 , <3.0.0" 14 }