github.com/graywolf-at-work-2/terraform-vendor@v1.4.5/internal/initwd/testdata/load-module-package-escape/child/package-escape-child.tf (about)

     1  module "grandchild" {
     2    # NOTE: This seems like it ought to work because there is indeed a
     3    # ../grandchild directory, but our caller loaded us as an external
     4    # module using an absolute path and so we're actually isolated from
     5    # the parent directory in a separate "module package", and so we
     6    # can't traverse out to find the grandchild module.
     7    source = "../grandchild"
     8  }