github.com/eliastor/durgaform@v0.0.0-20220816172711-d0ab2d17673e/internal/durgaform/testdata/transform-provider-grandchild-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  }