We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba9e403 commit 1da0850Copy full SHA for 1da0850
outputs.tf
@@ -7,3 +7,13 @@ output "all" {
7
}
8
]
9
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