terraform/configs/testdata/valid-modules/nested-providers-fqns/main.tf

14 lines
155 B
HCL

terraform {
required_providers {
foo-test = {
source = "foo/test"
}
}
}
provider "foo-test" {}
module "child" {
source = "./child"
}