github.com/pmcatominey/terraform@v0.7.0-rc2.0.20160708105029-1401a52a5cc5/website/source/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  If you find a resource that you want to import and Terraform reports
    15  that it isn't importable, please report an issue.
    16  
    17  Converting a resource to be importable is also relatively simple, so if
    18  you're interested in contributing that functionality, the Terraform team
    19  would be grateful.
    20  
    21  To make a resource importable, please see the
    22  [plugin documentation on writing a resource](/docs/plugins/provider.html).