initial commit
Signed-off-by: Jason Hall <imjasonh@gmail.com>
This commit is contained in:
commit
4dc1b58f2f
20 changed files with 1398 additions and 0 deletions
14
terraform/outputs.tf
Normal file
14
terraform/outputs.tf
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
output "static_ip" {
|
||||
value = google_compute_address.forgejo.address
|
||||
description = "Point your domain's A record at this address"
|
||||
}
|
||||
|
||||
output "ssh_command" {
|
||||
value = "gcloud compute ssh forgejo --zone=${var.zone} --tunnel-through-iap"
|
||||
description = "Admin SSH via IAP tunnel"
|
||||
}
|
||||
|
||||
output "backup_bucket" {
|
||||
value = google_storage_bucket.backups.name
|
||||
description = "GCS bucket holding nightly backups"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue