-
Notifications
You must be signed in to change notification settings - Fork 4
/
outputs.tf
39 lines (32 loc) · 981 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
36
37
38
39
output "full_name" {
description = "The full name of the repository."
value = github_repository.self.full_name
}
output "html_url" {
description = "The HTML URL of the repository."
value = github_repository.self.html_url
}
output "git_clone_url" {
description = "The Git URL of the repository."
value = github_repository.self.git_clone_url
}
output "http_clone_url" {
description = "The HTTP URL of the repository."
value = github_repository.self.http_clone_url
}
output "node_id" {
description = "The Node ID of the repository."
value = github_repository.self.node_id
}
output "repo_id" {
description = "The ID of the repository."
value = github_repository.self.id
}
output "ssh_clone_url" {
description = "The SSH URL of the repository."
value = github_repository.self.ssh_clone_url
}
output "svn_url" {
description = "The SVN URL of the repository."
value = github_repository.self.svn_url
}