From 7d4a8beea3816da73f0848c27ebbf5b725030cd4 Mon Sep 17 00:00:00 2001 From: Dave Arnold Date: Mon, 17 Feb 2025 23:36:56 -0800 Subject: [PATCH] Add SSH clone URL output to outputs.tf --- outputs.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/outputs.tf b/outputs.tf index 4544f4f..1d937cf 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,3 +1,8 @@ output "github_repo" { value = github_repository.repo } + +output "ssh_clone_url" { + description = "URL that can be provided to git clone to clone the repository via SSH" + value = github_repository.repo.ssh_clone_url +}