Commit ad0b9a32 authored by Ilia Lazebnik's avatar Ilia Lazebnik Committed by GitHub

fix: Fix wrong ACM PCA output (#450)

parent 2ea46b36
...@@ -1269,7 +1269,7 @@ output "vpc_endpoint_access_analyzer_dns_entry" { ...@@ -1269,7 +1269,7 @@ output "vpc_endpoint_access_analyzer_dns_entry" {
output "vpc_endpoint_acm_pca_id" { output "vpc_endpoint_acm_pca_id" {
description = "The ID of VPC endpoint for ACM PCA" 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" { output "vpc_endpoint_acm_pca_network_interface_ids" {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment