generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
85 lines (70 loc) · 2.84 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
output "arbitrary_secret_id" {
description = "ID of the created arbitrary_secret_id secret"
value = module.secrets_manager_arbitrary_secret.secret_id
}
output "arbitrary_secret_crn" {
description = "CRN of the created arbitrary_secret_id secret"
value = module.secrets_manager_arbitrary_secret.secret_crn
}
output "arbitrary_secret_nonsensitive_payload" {
value = nonsensitive(data.ibm_sm_arbitrary_secret.arbitrary_secret.payload)
description = "accessing arbitrary secret"
sensitive = false
}
output "arbitrary_secret_payload" {
value = data.ibm_sm_arbitrary_secret.arbitrary_secret.payload
sensitive = true
description = "accessing arbitrary secret"
}
output "user_pass_secret_id" {
description = "ID of the created username_password secret"
value = module.secrets_manager_user_pass_secret.secret_id
}
output "user_pass_secret_crn" {
description = "CRN of the created username_password secret"
value = module.secrets_manager_user_pass_secret.secret_crn
}
output "user_pass_secret_nonsensitive_payload" {
value = nonsensitive(data.ibm_sm_username_password_secret.user_pass_secret.password)
description = "accessing username_password secret"
sensitive = false
}
output "user_pass_secret_payload" {
value = data.ibm_sm_username_password_secret.user_pass_secret.password
sensitive = true
description = "accessing arbitrary secret"
}
output "user_pass_no_rotate_secret_id" {
description = "ID of the created username_password secret"
value = module.secrets_manager_user_pass_no_rotate_secret.secret_id
}
output "user_pass_no_rotate_secret_crn" {
description = "CRN of the created username_password secret"
value = module.secrets_manager_user_pass_no_rotate_secret.secret_crn
}
output "user_pass_no_rotate_secret_nonsensitive_payload" {
value = nonsensitive(data.ibm_sm_username_password_secret.user_pass_no_rotate_secret.password)
description = "accessing username_password secret"
sensitive = false
}
output "user_pass_no_rotate_secret_payload" {
value = data.ibm_sm_username_password_secret.user_pass_no_rotate_secret.password
sensitive = true
description = "accessing arbitrary secret"
}
output "imported_cert_secret_id" {
description = "ID of the created imported_cert secret"
value = module.secret_manager_imported_cert.secret_id
}
output "imported_cert_secret_crn" {
description = "CRN of the created imported_cert secret"
value = module.secret_manager_imported_cert.secret_crn
}
output "service_credential_secret_id" {
description = "ID of the created service_credential secret"
value = module.secret_manager_service_credential.secret_id
}
output "service_credential_secret_crn" {
description = "CRN of the created service_credential secret"
value = module.secret_manager_service_credential.secret_crn
}