github.com/posener/terraform@v0.11.0-beta1.0.20171103235147-645df36af025/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  }