Skip to content

Commit

Permalink
updated outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremycook123 committed Jun 12, 2024
1 parent 2936b46 commit cf1a645
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions terraform/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,22 @@ output "source_kms_key_arn" {
value = module.kms-source.kms_key_arn
}

output "destination_kms_key_arn" {
value = module.kms-dest.kms_key_arn
output "source_bucket_name" {
value = module.s3-source.bucket_name
}

output "source_bucket_arn" {
value = module.s3-source.bucket_arn
}

output "destination_kms_key_arn" {
value = module.kms-dest.kms_key_arn
}

output "destination_bucket_name" {
value = module.s3-dest.bucket_name
}

output "destination_bucket_arn" {
value = module.s3-dest.bucket_arn
}

0 comments on commit cf1a645

Please sign in to comment.