mirror of
https://github.com/FoggedLens/deflock.git
synced 2026-02-12 15:02:45 +00:00
* add rss ingestor * it works * blog working * fix the theme switcher * finalize blog, re-add store * fix terraform for blog_scraper * update sitemap * update readme
14 lines
463 B
HCL
14 lines
463 B
HCL
output "lambda_function_arn" {
|
|
description = "ARN of the blog scraper Lambda function"
|
|
value = aws_lambda_function.blog_scraper_lambda.arn
|
|
}
|
|
|
|
output "lambda_function_name" {
|
|
description = "Name of the blog scraper Lambda function"
|
|
value = aws_lambda_function.blog_scraper_lambda.function_name
|
|
}
|
|
|
|
output "cloudwatch_event_rule_arn" {
|
|
description = "ARN of the CloudWatch Event Rule"
|
|
value = aws_cloudwatch_event_rule.lambda_rule.arn
|
|
} |