Skip to content

Commit

Permalink
fix: Fix wrong ACM PCA output (#450)
Browse files Browse the repository at this point in the history
  • Loading branch information
DrFaust92 authored May 25, 2020
1 parent 2ea46b3 commit ad0b9a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -1269,7 +1269,7 @@ output "vpc_endpoint_access_analyzer_dns_entry" {

output "vpc_endpoint_acm_pca_id" {
description = "The ID of VPC endpoint for ACM PCA"
value = concat(aws_vpc_endpoint.access_analyzer.*.id, [""])[0]
value = concat(aws_vpc_endpoint.acm_pca.*.id, [""])[0]
}

output "vpc_endpoint_acm_pca_network_interface_ids" {
Expand Down

0 comments on commit ad0b9a3

Please sign in to comment.