github.com/lakshmikarc/terraform-2@v0.11.9-0.20181005183753-e0b7475984b7/terraform/test-fixtures/transform-provider-inherit/main.tf (about)

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