Skip to content

Commit 3aa4b45

Browse files
authored
Remove network_interface_id output (#38)
1 parent c6c99d6 commit 3aa4b45

File tree

4 files changed

+1
-8
lines changed

4 files changed

+1
-8
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2017-2018 Cloud Posse, LLC
189+
Copyright 2017-2019 Cloud Posse, LLC
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,6 @@ Available targets:
162162
| alarm | CloudWatch Alarm ID |
163163
| ebs_ids | IDs of EBSs |
164164
| id | Disambiguated ID of the instance |
165-
| network_interface_id | ID of the network interface that was created with the instance |
166165
| primary_network_interface_id | ID of the instance's primary network interface |
167166
| private_dns | Private DNS of instance |
168167
| private_ip | Private IP of instance |

docs/terraform.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
| alarm | CloudWatch Alarm ID |
5959
| ebs_ids | IDs of EBSs |
6060
| id | Disambiguated ID of the instance |
61-
| network_interface_id | ID of the network interface that was created with the instance |
6261
| primary_network_interface_id | ID of the instance's primary network interface |
6362
| private_dns | Private DNS of instance |
6463
| private_ip | Private IP of instance |

outputs.tf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,3 @@ output "primary_network_interface_id" {
5757
description = "ID of the instance's primary network interface"
5858
value = "${join("", aws_instance.default.*.primary_network_interface_id)}"
5959
}
60-
61-
output "network_interface_id" {
62-
description = "ID of the network interface that was created with the instance"
63-
value = "${join("", aws_instance.default.*.network_interface_id)}"
64-
}

0 commit comments

Comments
 (0)