Skip to content

Commit

Permalink
Add output for VPC endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
snemetz committed May 29, 2022
1 parent 328bd9f commit 3ecc5bb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ output "transfer_endpoint" {
description = "The endpoint of the Transfer Server"
value = module.this.enabled ? join("", aws_transfer_server.default.*.endpoint) : null
}
output "transfer_vpc_endpoint_details" {
description = "Transfer server VPC endpoint details"
value = module.this.enabled && local.is_vpc ? join("", aws_transfer_server.default.*.endpoint_details) : null
}

output "elastic_ips" {
description = "Provisioned Elastic IP IDs"
Expand Down

0 comments on commit 3ecc5bb

Please sign in to comment.