github.com/iaas-resource-provision/iaas-rpc@v1.0.7-0.20211021023331-ed21f798c408/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 }