mirror of
https://github.com/vmware-tanzu/pinniped.git
synced 2026-07-30 12:02:56 +00:00
31 lines
629 B
Terraform
31 lines
629 B
Terraform
# Copyright 2023-2025 the Pinniped contributors. All Rights Reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
output "username" {
|
|
value = google_sql_user.user.name
|
|
}
|
|
|
|
output "password" {
|
|
sensitive = true
|
|
value = random_string.password.result
|
|
}
|
|
|
|
output "ip" {
|
|
value = google_sql_database_instance.main.ip_address[0].ip_address
|
|
}
|
|
|
|
output "ca-cert" {
|
|
sensitive = true
|
|
value = google_sql_database_instance.main.server_ca_cert[0].cert
|
|
}
|
|
|
|
output "cert" {
|
|
sensitive = true
|
|
value = google_sql_ssl_cert.cert.cert
|
|
}
|
|
|
|
output "private-key" {
|
|
sensitive = true
|
|
value = google_sql_ssl_cert.cert.private_key
|
|
}
|