terraform模块:
resource "netbox_device" "device" {
name = var.name
site = var.site
tenant = var.tenant
rack = var.rack
position = var.position
type = var.type
role = var.role
status = var.status
}
resource "netbox_interface" "device_interface" {
for_each = var.connections
name = each.key
device = netbox_device.device.id
}
resource "netbox_cable" "device_connections" {
for_each = var.connections
device_a_name = netbox_device.device.name
interface_a_name = each.key
device_b_name = each.value.device
interface_b_name = each.value.interface
}
主要清单:
19 module "cmp1_test" {
20 source = "../../modules/device"
21 name = "cmp1"
22 site = "example.site"
23 rack = "111"
24 position = 15
25 type = "Generic-1U"
26 role = "cmp"
27 connections = {
28 "eth0" = { device = "san-s1-1", interface = "Ethernet 5" },
29 "eth1" = { device = "san-s1-2", interface = "Ethernet 6" },
30 "ipmi" = { device = "san-s1-1", interface = "Ethernet 7" }
31 }
32 }
需要导入资源状态:
terrain导入模块.cmp1_test.netbox_device.device 2828-正常工作
terrain import module.cmp1_test.netbox_interface.device_interface [“ eth0”] 330033
遇到错误
未找到匹配项: module.cmp1_test.netbox_interface.device_interface [eth0]
导入所有资源的正确方法是什么?
创建后的tfstate如下:
{
"module": "module.cmp1_test",
"mode": "managed",
"type": "netbox_device",
"name": "device",
"provider": "provider.netbox",
"instances": [
{
"schema_version": 0,
"attributes": {
"face": 0,
"id": "2828",
"name": "cmp1",
"position": 15,
"rack": "111",
"role": "cmp",
"serial": "",
"site": "example.site",
"status": "Planned",
"tenant": "VPC",
"type": "Generic-1U"
},
"private": "bnVsbA=="
}
]
},
{
"module": "module.cmp1_test",
"mode": "managed",
"type": "netbox_interface",
"name": "device_interface",
"each": "map",
"provider": "provider.netbox",
"instances": [
{
"index_key": "eth0",
"schema_version": 0,
"attributes": {
"description": null,
"device": 2828,
"enabled": null,
"form_factor": null,
"id": "31303",
"lag": null,
"mgmt_only": null,
"mode": null,
"mtu": null,
"name": "eth0",
"type": 1200
},
"private": "bnVsbA==",
"dependencies": [
"module.cmp1_test.netbox_device.device"
]
},
答案 0 :(得分:0)
您的外壳正在解释资源地址中的引号,因此在Terraform解释它们之前将其删除。
如果您使用的是类似Unix的系统(例如Linux,Mac OS X),则可以使用单引号将双引号从字面上传递给Terraform:
terraform import 'module.cmp1_test.netbox_interface.device_interface["eth0"]' 330033
如果您使用的是Windows,请使用常规的Windows命令提示符(不是 PowerShell),并使用反斜杠转义将双引号从字面上传递给Terraform:
terraform import module.cmp1_test.netbox_interface.device_interface[\"eth0\"] 330033
如果使用的是PowerShell,则必须使用{Stop Parsing“符号--%
禁用PowerShell's parser以确保它不会尝试将参数解释为PowerShell表达式,然后使用与上述普通Windows命令提示符的转义相同:
terraform --% import module.cmp1_test.netbox_interface.device_interface[\"eth0\"] 330033