We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39e58f2 commit 7e9677dCopy full SHA for 7e9677d
outputs.tf
@@ -19,3 +19,11 @@ output "lambda_execution_role" {
19
output "apig_arn" {
20
value = aws_apigatewayv2_api.service_apig.arn
21
}
22
+output "exposed_params" {
23
+ value = var.expose_outputs_to_parameters && var.parameter_prefix != "" ? [
24
+ aws_ssm_parameter.endpoint[0].name,
25
+ aws_ssm_parameter.lambda[0].name,
26
+ aws_ssm_parameter.apig_endpoint[0].name,
27
+ aws_ssm_parameter.apig_arn[0].name
28
+ ] : []
29
+}
0 commit comments