github.com/muratcelep/terraform@v1.1.0-beta2-not-internal-4/not-internal/terraform/testdata/import-module/main.tf (about)

     1  provider "aws" {
     2    foo = "bar"
     3  }
     4  
     5  module "child" {
     6    count = 1
     7    source = "./child"
     8    providers = {
     9      aws = aws
    10    }
    11  }