Skip to content

Instantly share code, notes, and snippets.

@ashmore11
Last active January 19, 2021 22:08
Show Gist options
  • Save ashmore11/1dd9e183904134cc8523dab5102ac94a to your computer and use it in GitHub Desktop.
Save ashmore11/1dd9e183904134cc8523dab5102ac94a to your computer and use it in GitHub Desktop.
Next Strapi Cloud Run (terraform outputs)
output "gcp_project_id" {
value = google_project.project.project_id
}
output "local_database_service_account_key_json" {
value = base64decode(google_service_account_key.local_database.private_key)
}
output "cloud_sql_root_user_password" {
value = random_password.cms_sql_root_password.result
}
output "cloud_sql_local_user_password" {
value = random_password.cms_sql_local_password.result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment