2016-05-18 20:47:41 +02:00
|
|
|
---
|
|
|
|
layout: "docs"
|
|
|
|
page_title: "Import: Resource Importability"
|
|
|
|
sidebar_current: "docs-import-importability"
|
|
|
|
description: |-
|
|
|
|
Each resource in Terraform must implement some basic logic to become
|
|
|
|
importable. As a result, not all Terraform resources are currently importable.
|
|
|
|
---
|
|
|
|
|
|
|
|
# Resource Importability
|
|
|
|
|
|
|
|
Each resource in Terraform must implement some basic logic to become
|
|
|
|
importable. As a result, not all Terraform resources are currently importable.
|
2018-02-14 18:02:45 +01:00
|
|
|
For those resources that support import, they are documented at the bottom of
|
|
|
|
each resource documentation page, under the Import heading. If you find a
|
|
|
|
resource that you want to import and Terraform reports that it is not
|
|
|
|
importable, please report an issue in the relevant provider repository.
|
2016-05-18 20:47:41 +02:00
|
|
|
|
|
|
|
Converting a resource to be importable is also relatively simple, so if
|
|
|
|
you're interested in contributing that functionality, the Terraform team
|
|
|
|
would be grateful.
|
|
|
|
|
|
|
|
To make a resource importable, please see the
|
|
|
|
[plugin documentation on writing a resource](/docs/plugins/provider.html).
|