github.com/davebizus/terraform-main@v0.11.12-beta1/website/docs/import/importability.html.md (about)

     1  ---
     2  layout: "docs"
     3  page_title: "Import: Resource Importability"
     4  sidebar_current: "docs-import-importability"
     5  description: |-
     6    Each resource in Terraform must implement some basic logic to become
     7    importable. As a result, not all Terraform resources are currently importable.
     8  ---
     9  
    10  # Resource Importability
    11  
    12  Each resource in Terraform must implement some basic logic to become
    13  importable. As a result, not all Terraform resources are currently importable.
    14  For those resources that support import, they are documented at the bottom of
    15  each resource documentation page, under the Import heading. If you find a
    16  resource that you want to import and Terraform reports that it is not
    17  importable, please report an issue in the relevant provider repository.
    18  
    19  Converting a resource to be importable is also relatively simple, so if
    20  you're interested in contributing that functionality, the Terraform team
    21  would be grateful.
    22  
    23  To make a resource importable, please see the
    24  [plugin documentation on writing a resource](/docs/plugins/provider.html).