-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.tf
executable file
·50 lines (41 loc) · 1.78 KB
/
output.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
/////////////////////////////
///// Venafi Outputs
output "venafi_certificate-frontend" {
value = venafi_certificate.nginx-bankapp-frontend.certificate
description = "The X509 certificate in PEM format."
}
output "venafi_chain-frontend" {
value = venafi_certificate.nginx-bankapp-frontend.chain
description = "The trust chain of X509 certificate authority certificates in PEM format concatenated together."
}
output "venafi_private_key_pem-frontend" {
sensitive = true
value = venafi_certificate.nginx-bankapp-frontend.private_key_pem
description = "The private key in PEM format."
}
output "venafi_certificate-processing" {
value = venafi_certificate.nginx-bankapp-processing.certificate
description = "The X509 certificate in PEM format."
}
output "venafi_chain-processing" {
value = venafi_certificate.nginx-bankapp-processing.chain
description = "The trust chain of X509 certificate authority certificates in PEM format concatenated together."
}
output "venafi_private_key_pem-processing" {
sensitive = true
value = venafi_certificate.nginx-bankapp-processing.private_key_pem
description = "The private key in PEM format."
}
output "venafi_certificate-the-beam" {
value = venafi_certificate.nginx-bankapp-the-beam.certificate
description = "The X509 certificate in PEM format."
}
output "venafi_chain-the-beam" {
value = venafi_certificate.nginx-bankapp-the-beam.chain
description = "The trust chain of X509 certificate authority certificates in PEM format concatenated together."
}
output "venafi_private_key_pem-the-beam" {
sensitive = true
value = venafi_certificate.nginx-bankapp-the-beam.private_key_pem
description = "The private key in PEM format."
}