github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/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  }