kubeform.dev/terraform-backend-sdk@v0.0.0-20220310143633-45f07fe731c5/command/testdata/add/module/main.tf (about)

     1  terraform {
     2      required_providers  {
     3          // This is deliberately odd, so we can test that the correct happycorp
     4          // provider is selected for any test_ resource added for this module
     5          test = {
     6              source = "happycorp/test"
     7          }
     8      }
     9  }
    10  
    11  resource "test_instance" "exists" {
    12      // I exist!
    13  }
    14  
    15  module "child" {
    16      source = "./module"
    17  }