Skip to content

Commit

Permalink
Add output pgbackup_s3_bucket_name
Browse files Browse the repository at this point in the history
  • Loading branch information
ltellesfl committed Oct 29, 2024
1 parent 67c9ff6 commit 9af0b3c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,16 @@ output "data_s3_bucket_name" {
value = module.s3-storage.data_s3_bucket_name
}

output "pgbackup_s3_bucket_name" {
description = "Name of the pgbackup s3 bucket"
value = module.s3-storage.pgbackup_s3_bucket_name
}

output "s3_role_id" {
description = "ID of the S3 role"
value = module.cluster.s3_role_id
}


output "efs_filesystem_id" {
description = "ID of the EFS filesystem"
value = var.include_efs == true ? module.efs-storage[0].efs_filesystem_id : ""
Expand Down

0 comments on commit 9af0b3c

Please sign in to comment.