generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
30 lines (24 loc) · 883 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
##############################################################################
# Outputs
##############################################################################
output "secret_id" {
description = "ID of the created Secret"
value = local.secret_id
}
output "secret_crn" {
description = "CRN of the created Secret"
value = local.secret_crn
}
output "secret_rotation" {
description = "Status of auto-rotation for secret"
value = local.secret_auto_rotation
}
output "secret_rotation_interval" {
description = "Rotation frecuency for secret (if applicable)"
value = local.secret_auto_rotation_frequency
}
output "secret_next_rotation_date" {
description = "Next rotation date for secret (if applicable)"
value = local.secret_next_rotation_date
}
##############################################################################