Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions apps/gp-news/usw2dev/outputs.tf
Original file line number Diff line number Diff line change
@@ -1 +1,25 @@
output "lambda_ecr_repository_url" {
description = "The URL of the ECR repository for the Lambda function"
value = aws_ecr_repository.lambda_container_repo.repository_url
}

output "lambda_ecr_repository_arn" {
description = "The ARN of the ECR repository for the Lambda function"
value = aws_ecr_repository.lambda_container_repo.arn
}

output "lambda_function_arn" {
description = "The ARN of the Lambda function"
value = aws_lambda_function.gp_news_lambda.arn
}

output "lambda_function_name" {
description = "The name of the Lambda function"
value = aws_lambda_function.gp_news_lambda.function_name
}

output "gha_role_arn" {
description = "The ARN of the IAM role for GitHub Actions"
value = aws_iam_role.gp_news_gha_ecr.arn
}

Loading