17 lines
202 B
Terraform
17 lines
202 B
Terraform
|
provider "test" {
|
||
|
alias = "baz"
|
||
|
}
|
||
|
|
||
|
resource "test_instance" "foo" {
|
||
|
provider = "test.baz"
|
||
|
}
|
||
|
|
||
|
module "bar" {
|
||
|
source = "./baz"
|
||
|
|
||
|
providers = {
|
||
|
test = "test.baz"
|
||
|
test.foo = "test"
|
||
|
}
|
||
|
}
|