github.com/trawler/terraform@v0.10.8-0.20171106022149-4b1c7a1d9b48/config/module/test-fixtures/basic-parent-providers/a/a.tf (about)

     1  provider "top" {}
     2  
     3  provider "bottom" {
     4      alias = "foo"
     5      value = "from bottom"
     6  }
     7  
     8  module "c" {
     9      source = "../c"
    10      providers = {
    11          "bottom" = "bottom.foo"
    12      }
    13  }