generated from SweetOps/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
outputs.tf
39 lines (32 loc) · 791 Bytes
/
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
output "name" {
value = local.secret_name
description = "Name of the secret"
}
output "id" {
value = local.secret_id
description = "ID of the secret"
}
output "arn" {
value = local.secret_arn
description = "ARN of the secret"
}
output "version_id" {
value = local.version_id
description = "The unique identifier of the version of the secret."
}
output "kms_key_arn" {
value = module.kms_key.key_arn
description = "KMS key ARN"
}
output "kms_key_id" {
value = local.kms_key_id
description = "KMS key ID"
}
output "kms_key_alias_arn" {
value = module.kms_key.alias_arn
description = "KMS key alias ARN"
}
output "kms_key_alias_name" {
value = module.kms_key.alias_name
description = "KMS key alias name"
}