【发布时间】:2018-12-15 10:55:58
【问题描述】:
我需要一些有关创建网络接口 azure terraform 的帮助。我在配置它们时遇到错误。如果我做错了什么,请帮助我。
错误: azurerm_network_interface.revproxy-1:network.InterfacesClient#CreateOrUpdate:发送请求失败:StatusCode=400 -- 原始错误:Code="IpConfigDeleteNotSupported" Message="IP Configuration dataname-1-configuration cannot be deleted. Delete and rename of primary IP Configuration不支持”详细信息=[] * azurerm_network_interface.core-1:发生 1 个错误:【问题讨论】:
-
资源 "azurerm_network_interface" "revproxy-1" { name = "${var.rg_name}-interface" location = "${var.rg_region}" resource_group_name = "${var.rg_name}" ip_configuration { name = "revproxy-1-configuration" subnet_id = "${azurerm_subnet.reverse_proxy.id}" private_ip_address_allocation = "dynamic" } }
-
编辑您的问题以包含任何其他相关信息,而不是将其发布在 cmets 中。
标签: azure networking terraform