Skip to content

Commit

Permalink
network_interface_id Attribute Removal (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
pnduati authored and antonbabenko committed Mar 1, 2019
1 parent 1962a4f commit fee41b7
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ locals {
this_key_name = "${compact(concat(coalescelist(aws_instance.this.*.key_name, aws_instance.this_t2.*.key_name), list("")))}"
this_public_dns = "${compact(concat(coalescelist(aws_instance.this.*.public_dns, aws_instance.this_t2.*.public_dns), list("")))}"
this_public_ip = "${compact(concat(coalescelist(aws_instance.this.*.public_ip, aws_instance.this_t2.*.public_ip), list("")))}"
this_network_interface_id = "${compact(concat(coalescelist(aws_instance.this.*.network_interface_id, aws_instance.this_t2.*.network_interface_id), list("")))}"
this_primary_network_interface_id = "${compact(concat(coalescelist(aws_instance.this.*.primary_network_interface_id, aws_instance.this_t2.*.primary_network_interface_id), list("")))}"
this_private_dns = "${compact(concat(coalescelist(aws_instance.this.*.private_dns, aws_instance.this_t2.*.private_dns), list("")))}"
this_private_ip = "${compact(concat(coalescelist(aws_instance.this.*.private_ip, aws_instance.this_t2.*.private_ip), list("")))}"
Expand Down Expand Up @@ -46,11 +45,6 @@ output "public_ip" {
value = ["${local.this_public_ip}"]
}

output "network_interface_id" {
description = "List of IDs of the network interface of instances"
value = ["${local.this_network_interface_id}"]
}

output "primary_network_interface_id" {
description = "List of IDs of the primary network interface of instances"
value = ["${local.this_primary_network_interface_id}"]
Expand Down

0 comments on commit fee41b7

Please sign in to comment.