从Terraform v0.7版本开始引入的import子命令
以下是面向Terraform开发者的内容。
导入功能?
该功能是将未通过Terraform创建的基础设施资源导入并纳入Terraform管理的功能。
尽管还没有文档,但AWS和DigitalOcean插件正在实现导入功能。
因为感到沮丧,所以我试探性地尝试了导入功能。
土壤改良进口帮助
$ terraform import --help
Usage: terraform import [options] ADDR ID
Import existing infrastructure into your Terraform state.
This will find and import the specified resource into your Terraform
state, allowing existing infrastructure to come under Terraform
management without having to be initially created by Terraform.
The ADDR specified is the address to import the resource to. Please
see the documentation online for resource addresses. The ID is a
resource-specific ID to identify that resource being imported. Please
reference the documentation for the resource type you're importing to
determine the ID syntax to use. It typically matches directly to the ID
that the provider uses.
In the current state of Terraform import, the resource is only imported
into your state file. Once it is imported, you must manually write
configuration for the new resource or Terraform will mark it for destruction.
Future versions of Terraform will expand the functionality of Terraform
import.
This command will not modify your infrastructure, but it will make
network requests to inspect parts of your infrastructure relevant to
the resource being imported.
Options:
-backup=path Path to backup the existing state file before
modifying. Defaults to the "-state-out" path with
".backup" extension. Set to "-" to disable backup.
-input=true Ask for input for variables if not directly set.
-no-color If specified, output won't contain any color.
-state=path Path to read and save state (unless state-out
is specified). Defaults to "terraform.tfstate".
-state-out=path Path to write updated state file. By default, the
"-state" path will be used.
使用方法
执行terraform import之后,需要指定资源的地址和ID。
资源的地址可以在此页面中找到,它实际上是由资源类型名称和资源ID组成。
如果要将Sakura Cloud的服务器资源(sakuracloud_server)以名称为server01的方式导入,可以将其作为示例。
$ terraform import sakuracloud_server.server01 [さくらのクラウドサーバーのID]
下面是中国的一个翻译选项:是这样的。
导入后会发生什么?
每个资源可能会稍有不同,但实际服务器的值将在tfstate文件中注册。
然而,在这种状态下,由于没有tf文件,下一次执行terraform apply将导致服务器被销毁。
目前还没有自动创建tf文件的功能。(将来有可能会实现)
因此,一旦进行了导入,您可以手动创建tf文件,将其放置在terraform的管理下。
实施怎么样了?
只需要在每个资源的实现中实现Importer即可。
如果只需要简单调用Read的话,可以加上3行代码就可以了。
func resourceSakuraCloudServer() *schema.Resource {
return &schema.Resource{
// 以下は通常のリソースとしてCRUDを定義
Create: resourceSakuraCloudServerCreate,
Update: resourceSakuraCloudServerUpdate,
Read: resourceSakuraCloudServerRead,
Delete: resourceSakuraCloudServerDelete,
// インポートをサポートするリソースでは以下のようにImporterを実装
Importer: &schema.ResourceImporter{
State: schema.ImportStatePassthrough,
},
//以降省略
现有的基础设施也能够通过Terraform来管理,这真是令人高兴啊。