Skip to content

Commit 1da0850

Browse files
committed
feat: Update outputs
1 parent ba9e403 commit 1da0850

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

outputs.tf

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,13 @@ output "all" {
77
}
88
]
99
}
10+
11+
output "kms_key_arn" {
12+
description = "The master key ARN"
13+
value = length(local.arns) > 0 ? aws_kms_key.master[0].arn : null
14+
}
15+
16+
output "kms_alias_arn" {
17+
description = "The master key alias ARN"
18+
value = length(local.arns) > 0 ? aws_kms_alias.master[0].arn : null
19+
}

0 commit comments

Comments
 (0)