From 718e4f2c45f428e15b6c4236cebadda35e1d7eac Mon Sep 17 00:00:00 2001 From: tmknom Date: Wed, 19 Jun 2019 18:53:04 +0900 Subject: [PATCH] Remove deprecated network_interface_id from outputs https://github.com/terraform-providers/terraform-provider-aws/pull/7715 --- outputs.tf | 5 ----- 1 file changed, 5 deletions(-) diff --git a/outputs.tf b/outputs.tf index ad1d4e0..b394de0 100644 --- a/outputs.tf +++ b/outputs.tf @@ -73,11 +73,6 @@ output "instance_key_name" { description = "The key name of the instance." } -output "instance_network_interface_id" { - value = "${aws_instance.default.network_interface_id}" - description = "The ID of the network interface that was created with the instance." -} - output "instance_primary_network_interface_id" { value = "${aws_instance.default.primary_network_interface_id}" description = "The ID of the instance's primary network interface."