Skip to content

Commit bae8c6d

Browse files
committed
feat: Add EC2 Instance Connect Endpoint support
1 parent 28df5f9 commit bae8c6d

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,10 @@ No modules.
637637
| <a name="output_elasticache_subnets_ipv6_cidr_blocks"></a> [elasticache\_subnets\_ipv6\_cidr\_blocks](#output\_elasticache\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of elasticache subnets in an IPv6 enabled VPC |
638638
| <a name="output_igw_arn"></a> [igw\_arn](#output\_igw\_arn) | The ARN of the Internet Gateway |
639639
| <a name="output_igw_id"></a> [igw\_id](#output\_igw\_id) | The ID of the Internet Gateway |
640+
| <a name="output_instance_connect_endpoint_arn"></a> [instance\_connect\_endpoint\_arn](#output\_instance\_connect\_endpoint\_arn) | The ARN of the EC2 Instance Connect Endpoint |
641+
| <a name="output_instance_connect_endpoint_dns_name"></a> [instance\_connect\_endpoint\_dns\_name](#output\_instance\_connect\_endpoint\_dns\_name) | The DNS name of the EC2 Instance Connect Endpoint |
640642
| <a name="output_instance_connect_endpoint_id"></a> [instance\_connect\_endpoint\_id](#output\_instance\_connect\_endpoint\_id) | The ID of the EC2 Instance Connect Endpoint |
643+
| <a name="output_instance_connect_endpoint_network_interface_ids"></a> [instance\_connect\_endpoint\_network\_interface\_ids](#output\_instance\_connect\_endpoint\_network\_interface\_ids) | The network interface IDs associated with the EC2 Instance Connect Endpoint |
641644
| <a name="output_intra_network_acl_arn"></a> [intra\_network\_acl\_arn](#output\_intra\_network\_acl\_arn) | ARN of the intra network ACL |
642645
| <a name="output_intra_network_acl_id"></a> [intra\_network\_acl\_id](#output\_intra\_network\_acl\_id) | ID of the intra network ACL |
643646
| <a name="output_intra_route_table_association_ids"></a> [intra\_route\_table\_association\_ids](#output\_intra\_route\_table\_association\_ids) | List of IDs of the intra route table association |

outputs.tf

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -675,3 +675,18 @@ output "instance_connect_endpoint_id" {
675675
description = "The ID of the EC2 Instance Connect Endpoint"
676676
value = try(aws_ec2_instance_connect_endpoint.this[0].id, null)
677677
}
678+
679+
output "instance_connect_endpoint_arn" {
680+
description = "The ARN of the EC2 Instance Connect Endpoint"
681+
value = aws_ec2_instance_connect_endpoint.this[0].arn
682+
}
683+
684+
output "instance_connect_endpoint_network_interface_ids" {
685+
description = "The network interface IDs associated with the EC2 Instance Connect Endpoint"
686+
value = aws_ec2_instance_connect_endpoint.this[0].network_interface_ids
687+
}
688+
689+
output "instance_connect_endpoint_dns_name" {
690+
description = "The DNS name of the EC2 Instance Connect Endpoint"
691+
value = aws_ec2_instance_connect_endpoint.this[0].dns_name
692+
}

0 commit comments

Comments
 (0)