github.com/hugorut/terraform@v1.1.3/website/docs/cli/import/importability.mdx (about)

     1  ---
     2  page_title: 'Import: Resource Importability'
     3  description: |-
     4    Each resource in Terraform must implement some basic logic to become
     5    importable. As a result, not all Terraform resources are currently importable.
     6  ---
     7  
     8  # Resource Importability
     9  
    10  Each resource in Terraform must implement some basic logic to become
    11  importable. As a result, not all Terraform resources are currently importable.
    12  For those resources that support import, they are documented at the bottom of
    13  each resource documentation page, under the Import heading. If you find a
    14  resource that you want to import and Terraform reports that it is not
    15  importable, please report an issue in the relevant provider repository.
    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
    22  [Extending Terraform: Resources — Import](/plugin/sdkv2/resources/import).