-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
velocloud module - adding private_ips outputs (#69)
* adding private_ips outputs * Continuous Integration - terraform fmt and terraform-docs * added descriptions * Continuous Integration - terraform fmt and terraform-docs * fixed naming of the security_group * Continuous Integration - terraform fmt and terraform-docs * updated the readme * splitting the mgmgt and wan security group out * Continuous Integration - terraform fmt and terraform-docs * updates to readme for accuracy
- Loading branch information
1 parent
255cba6
commit 52cad35
Showing
4 changed files
with
91 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,44 @@ | ||
output "ec2_instance_id" { | ||
value = aws_instance.ec2_instance[*].id | ||
description = "The EC2 instance IDs as a list" | ||
value = aws_instance.ec2_instance[*].id | ||
} | ||
|
||
output "public_eip_id" { | ||
value = aws_eip.wan_external_ip[*].id | ||
description = "The EIP IDs as a list" | ||
value = aws_eip.wan_external_ip[*].id | ||
} | ||
|
||
output "public_eip_ip" { | ||
value = aws_eip.wan_external_ip[*].public_ip | ||
description = "The EIP public IPs as a list" | ||
value = aws_eip.wan_external_ip[*].public_ip | ||
} | ||
|
||
output "mgmt_network_interface_id" { | ||
value = aws_network_interface.mgmt_nic[*].id | ||
description = "The mgmt network interface IDs as a list" | ||
value = aws_network_interface.mgmt_nic[*].id | ||
} | ||
|
||
output "mgmt_network_interface_private_ips" { | ||
description = "The mgmt network interface private IPs as a list" | ||
value = aws_network_interface.mgmt_nic[*].private_ips | ||
} | ||
|
||
output "public_network_interface_id" { | ||
value = aws_network_interface.public_nic[*].id | ||
description = "The public network interface IDs as a list" | ||
value = aws_network_interface.public_nic[*].id | ||
} | ||
|
||
output "public_network_interface_private_ips" { | ||
description = "The public network interface private IPs as a list" | ||
value = aws_network_interface.public_nic[*].private_ips | ||
} | ||
|
||
output "private_network_interface_id" { | ||
value = aws_network_interface.private_nic[*].id | ||
description = "The private network interface IDs as a list" | ||
value = aws_network_interface.private_nic[*].id | ||
} | ||
|
||
output "private_network_interface_private_ips" { | ||
description = "The private network interface private IPs as a list" | ||
value = aws_network_interface.private_nic[*].private_ips | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters