-
Notifications
You must be signed in to change notification settings - Fork 8
/
outputs.tf
36 lines (24 loc) · 970 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
output "full_name" {
value = github_repository.main.full_name
description = "A string of the form `orgname/reponame`."
}
output "html_url" {
value = github_repository.main.html_url
description = "URL to the repository on the web."
}
output "ssh_clone_url" {
value = github_repository.main.ssh_clone_url
description = "URL that can be provided to `git clone` to clone the repository via SSH."
}
output "http_clone_url" {
value = github_repository.main.http_clone_url
description = "URL that can be provided to `git clone` to clone the repository via HTTPS."
}
output "git_clone_url" {
value = github_repository.main.git_clone_url
description = "URL that can be provided to `git clone` to clone the repository anonymously via the git protocol."
}
output "svn_url" {
value = github_repository.main.svn_url
description = "URL that can be provided to svn checkout to check out the repository via GitHub's Subversion protocol emulation."
}