forked from ksatirli/terraform-github-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.tf
57 lines (47 loc) · 1.74 KB
/
output.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
50
51
52
53
54
55
56
57
output "github_repository" {
description = "Exported Attributes for `github_repository`."
value = github_repository.main
}
# TODO: enable when resource is enabled
#output "github_branch" {
# description = "Exported Attributes for `github_branch`."
# value = github_branch.main
#}
# TODO: enable when resource is enabled
#output "github_branch_default" {
# description = "Exported Attributes for `github_branch_default`."
# value = github_branch_default.main
#}
# TODO: enable when resource is enabled
#output "github_branch_protection" {
# description = "Exported Attributes for `github_branch_protection`."
# value = github_branch_protection.main
#}
output "github_repository_deploy_key" {
description = "Exported Attributes for `github_repository_deploy_key`."
value = github_repository_deploy_key.main
}
output "github_repository_collaborator" {
description = "Exported Attributes for `github_repository_collaborator`."
value = github_repository_collaborator.main
}
output "github_team_repository" {
description = "Exported Attributes for `github_team_repository`."
value = github_team_repository.main
}
output "github_issue_label" {
description = "Exported Attributes for `github_issue_label`."
value = github_issue_label.main
}
output "github_repository_project" {
description = "Exported Attributes for `github_repository_project`."
value = github_repository_project.main
}
output "github_repository_file" {
description = "Exported Attributes for `github_repository_file`."
value = github_repository_file.main
}
output "github_repository_webhook" {
description = "Exported Attributes for `github_repository_webhook`."
value = github_repository_webhook.main
}