Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [v1.4.7] (2026-07-22)

### Improvements

- Output arns of copy-recovery-point lambda and restore-to-s3-lambda if created.

## [v1.4.6] (2026-07-22)

### Features
Expand Down
8 changes: 7 additions & 1 deletion modules/aws-backup-source/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,12 @@ No modules.

## Outputs

No outputs.
| Name | Description | Type |
| --- | --- | --- |
| <a name="output_backup_role_arn"></a> [backup_role_arn](#output_backup_role_arn) | ARN of the backup role | `string` |
| <a name="output_backup_vault_arn"></a> [backup_vault_arn](#output_backup_vault_arn) | ARN of the backup vault | `string` |
| <a name="output_backup_vault_name"></a> [backup_vault_name](#output_backup_vault_name) | Name of the backup vault | `string` |
| <a name="output_lambda_copy_recovery_point_to_s3_arn"></a> [lambda_copy_recovery_point_to_s3_arn](#output_lambda_copy_recovery_point_to_s3_arn) | ARN of the Lambda function that copies recovery points to S3. Only created when `lambda_copy_recovery_point_enable` is true. | `string` or `null` | n/a | no |
| <a name="output_lambda_restore_to_s3_arn"></a> [lambda_restore_to_s3_arn](#output_lambda_restore_to_s3_arn) | ARN of the Lambda function that restores to S3. Only created when `lambda_restore_to_s3_enable` is true. | `string` or `null`|
<!-- END_TF_DOCS -->
<!-- markdownlint-enable MD037 -->
10 changes: 10 additions & 0 deletions modules/aws-backup-source/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,13 @@ output "backup_vault_name" {
value = aws_backup_vault.main.name
description = "Name of the of the vault"
}

output "lambda_copy_recovery_point_to_s3_arn" {
value = try(aws_lambda_function.lambda_copy_recovery_point[0].arn, null)
description = "ARN of the of the lambda function to copy recovery point to s3. Lambda only created if lambda_copy_recovery_point_enable is true"
}

output "lambda_restore_to_s3_arn" {
value = try(aws_lambda_function.lambda_restore_to_s3[0].arn, null)
description = "ARN of the of the lambda function to restore to s3. Lambda only created if lambda_restore_to_s3_enable is true"
}
2 changes: 1 addition & 1 deletion modules/aws-backup-source/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.4.6
v1.4.7