github.com/opentofu/opentofu@v1.7.1/internal/configs/testdata/invalid-import-files/import-and-module-clash.tf (about)

     1  
     2  module "importable_resource" {
     3    source = "../valid-modules/importable-resource"
     4  }
     5  
     6  provider "local" {}
     7  
     8  import {
     9    provider = local
    10    id = "foo/bar"
    11    to = module.importable_resource.local_file.foo
    12  }