forked from terraform-aws-modules/terraform-aws-kms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
51 lines (41 loc) · 1.81 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
################################################################################
# Key
################################################################################
output "key_arn" {
description = "The Amazon Resource Name (ARN) of the key"
value = try(aws_kms_key.this[0].arn, aws_kms_external_key.this[0].arn, null)
}
output "key_id" {
description = "The globally unique identifier for the key"
value = try(aws_kms_key.this[0].key_id, aws_kms_external_key.this[0].id, null)
}
output "key_policy" {
description = "The IAM resource policy set on the key"
value = try(aws_kms_key.this[0].policy, aws_kms_external_key.this[0].policy, null)
}
output "external_key_expiration_model" {
description = "Whether the key material expires. Empty when pending key material import, otherwise `KEY_MATERIAL_EXPIRES` or `KEY_MATERIAL_DOES_NOT_EXPIRE`"
value = try(aws_kms_external_key.this[0].expiration_model, null)
}
output "external_key_state" {
description = "The state of the CMK"
value = try(aws_kms_external_key.this[0].key_state, null)
}
output "external_key_usage" {
description = "The cryptographic operations for which you can use the CMK"
value = try(aws_kms_external_key.this[0].key_usage, null)
}
################################################################################
# Alias
################################################################################
output "aliases" {
description = "A map of aliases created and their attributes"
value = aws_kms_alias.this
}
################################################################################
# Grant
################################################################################
output "grants" {
description = "A map of grants created and their attributes"
value = aws_kms_grant.this
}