github.com/opentofu/opentofu@v1.7.1/internal/command/testdata/init-with-tests-with-provider/setup/main.tf (about)

     1  terraform {
     2    required_providers {
     3      test = {
     4        source = "hashicorp/test"
     5        version = "1.0.1"
     6      }
     7    }
     8  }
     9  
    10  resource "test_instance" "baz" {
    11    ami = "baz"
    12  }