We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7727773 commit 321a632Copy full SHA for 321a632
1 file changed
infrastructure/modules/kms/outputs.tf
@@ -20,10 +20,10 @@ output "user_policy_arn" {
20
21
output "replica_key_arn" {
22
description = "ARN of the Replica KMS key"
23
- value = try(aws_kms_key.replica[0].arn, null)
+ value = try(aws_kms_replica_key.replica[0].arn, null)
24
}
25
26
output "replica_key_id" {
27
description = "ID of the Replica KMS key"
28
- value = try(aws_kms_key.replica[0].key_id, null)
+ value = try(aws_kms_replica_key.replica[0].key_id, null)
29
0 commit comments