Skip to content

Commit ecc5a0f

Browse files
committed
added output support for file names
1 parent 0c76c2d commit ecc5a0f

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

outputs.tf

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,16 @@ output "key_ring_id" {
1717

1818
output "encrypted_private_key" {
1919
value = google_kms_secret_ciphertext.tls-key-encrypted.ciphertext
20-
}
20+
}
21+
22+
output "cert_filename" {
23+
value = google_storage_bucket_object.server-cert.name
24+
}
25+
26+
output "key_filename" {
27+
value = google_storage_bucket_object.private-key.name
28+
}
29+
30+
output "ca_filename" {
31+
value = google_storage_bucket_object.ca-cert.name
32+
}

0 commit comments

Comments
 (0)