github.com/kanishk98/terraform@v1.3.0-dev.0.20220917174235-661ca8088a6a/internal/command/testdata/init-check-required-version-first/main.tf (about)

     1  terraform {
     2    required_version = ">200.0.0"
     3  
     4    bad {
     5      block = "false"
     6    }
     7  
     8    required_providers {
     9      bang = {
    10        oops = "boom"
    11      }
    12    }
    13  }
    14  
    15  nope {
    16    boom {}
    17  }