-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
49 lines (40 loc) · 2.22 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
output "repository" {
description = "Repositories within your GitHub organization."
value = { for github_repository in github_repository.this : github_repository.name => github_repository }
}
output "full_name" {
description = "A string of the form \"orgname/reponame\"."
value = { for github_repository in github_repository.this : github_repository.name => github_repository.full_name }
}
output "html_url" {
description = "URL to the repository on the web."
value = { for github_repository in github_repository.this : github_repository.name => github_repository.html_url }
}
output "ssh_clone_url" {
description = "URL that can be provided to git clone to clone the repository via SSH."
value = { for github_repository in github_repository.this : github_repository.name => github_repository.ssh_clone_url }
}
output "http_clone_url" {
description = "URL that can be provided to git clone to clone the repository via HTTPS."
value = { for github_repository in github_repository.this : github_repository.name => github_repository.http_clone_url }
}
output "git_clone_url" {
description = "URL that can be provided to git clone to clone the repository anonymously via the git protocol."
value = { for github_repository in github_repository.this : github_repository.name => github_repository.git_clone_url }
}
output "svn_url" {
description = "URL that can be provided to svn checkout to check out the repository via GitHub's Subversion protocol emulation."
value = { for github_repository in github_repository.this : github_repository.name => github_repository.svn_url }
}
output "node_id" {
description = "GraphQL global node id for use with v4 API."
value = { for github_repository in github_repository.this : github_repository.name => github_repository.node_id }
}
output "repo_id" {
description = "GitHub ID for the repository."
value = { for github_repository in github_repository.this : github_repository.name => github_repository.repo_id }
}
output "primary_language" {
description = "The primary language used in the repository."
value = { for github_repository in github_repository.this : github_repository.name => github_repository.primary_language }
}