Skip to content

Commit

Permalink
add output
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jul 27, 2023
1 parent 247c84f commit 56339ec
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,11 @@ output "vpc_endpoints_ssm_ids" {
"us-gov-west-1" = { for k, v in nonsensitive(local.vpc_endpoints_ssm_west) : v.name => v.id }
}
}

output "vpc_endpoints_ssm_zone_ids" {
description = "VPC Endpoints with ZoneID created by SSM parameter"
value = {
"us-gov-east-1" = { for k, v in nonsensitive(local.vpc_endpoints_ssm_east) : v.name => v.zone_id }
"us-gov-west-1" = { for k, v in nonsensitive(local.vpc_endpoints_ssm_west) : v.name => v.zone_id }
}
}

0 comments on commit 56339ec

Please sign in to comment.