Skip to content

Commit 321a632

Browse files
committed
CCM-10231: Adding multi-region kms key support
1 parent 7727773 commit 321a632

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

infrastructure/modules/kms/outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ output "user_policy_arn" {
2020

2121
output "replica_key_arn" {
2222
description = "ARN of the Replica KMS key"
23-
value = try(aws_kms_key.replica[0].arn, null)
23+
value = try(aws_kms_replica_key.replica[0].arn, null)
2424
}
2525

2626
output "replica_key_id" {
2727
description = "ID of the Replica KMS key"
28-
value = try(aws_kms_key.replica[0].key_id, null)
28+
value = try(aws_kms_replica_key.replica[0].key_id, null)
2929
}

0 commit comments

Comments
 (0)