github.com/opentofu/opentofu@v1.7.1/internal/refactoring/testdata/remove-statement/valid-remove-statements/main.tf (about)

     1  removed {
     2    from = foo.basic_resource
     3  }
     4  
     5  removed {
     6    from = module.basic_module
     7  }
     8  
     9  removed {
    10    from = module.child.foo.removed_resource_from_root_module
    11  }
    12  
    13  module "child" {
    14    source = "./child"
    15  }