github.com/muratcelep/terraform@v1.1.0-beta2-not-internal-4/not-internal/configs/testdata/provider-reqs/child/provider-reqs-child.tf (about)

     1  terraform {
     2    required_providers {
     3      cloud = {
     4        source = "tf.example.com/awesomecorp/happycloud"
     5      }
     6      null = {
     7        # This should merge with the null provider constraint in the root module
     8        version = "2.0.1"
     9      }
    10    }
    11  }
    12  
    13  module "nested" {
    14    source = "./grandchild"
    15  }