Skip to content

Commit

Permalink
tenant-codebuild updated
Browse files Browse the repository at this point in the history
  • Loading branch information
sfdevops committed Aug 23, 2024
1 parent 666db17 commit cb41ca6
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
7 changes: 7 additions & 0 deletions terraform/tenant-codebuilds/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,13 @@ module "tenant_ssm_parameters" {
type = "SecureString"
overwrite = "true"
description = "Tenant Client Secret for bridge application plane"
},
{
name = "/github_saas_repo"
value = module.saas_management_github_repository.github_repository_http_clone_url
type = "SecureString"
overwrite = "true"
description = "SaaS Github Repository"
}
]
tags = module.tags.tags
Expand Down
29 changes: 29 additions & 0 deletions terraform/tenant-codebuilds/output.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
output "github_repository_name" {
value = "${module.saas_management_github_repository.github_repository_name}"
description = "Github Repository Name"
}

output "github_repository_html_url" {
value = "${module.saas_management_github_repository.github_repository_html_url}"
description = "URL to the repository on the web"
}

output "github_repository_ssh_url" {
value = "${module.saas_management_github_repository.github_repository_ssh_url}"
description = "URL that can be provided to git clone to clone the repository via SSH."
}

output "github_repository_http_clone_url" {
value = "${module.saas_management_github_repository.github_repository_http_clone_url}"
description = "URL that can be provided to git clone to clone the repository via HTTPS."
}

output "github_repository_git_clone_url" {
value = "${module.saas_management_github_repository.github_repository_git_clone_url}"
description = "URL that can be provided to git clone to clone the repository anonymously via the git protocol."
}

output "github_repository_repo_id" {
value = "${module.saas_management_github_repository.github_repository_repo_id}"
description = "GitHub ID for the repository"
}

0 comments on commit cb41ca6

Please sign in to comment.