12 lines
320 B
HCL
Executable File
12 lines
320 B
HCL
Executable File
# VPC Endpoints
|
|
output "vpc_endpoint_s3_id" {
|
|
description = "The ID of VPC endpoint for S3"
|
|
value = concat(aws_vpc_endpoint.s3.*.id, [""])[0]
|
|
}
|
|
|
|
output "vpc_endpoint_s3_pl_id" {
|
|
description = "The prefix list for the S3 VPC endpoint."
|
|
value = concat(aws_vpc_endpoint.s3.*.prefix_list_id, [""])[0]
|
|
}
|
|
|