Skip to content

Commit e671583

Browse files
committed
Install LGTM in quarkus-cxf
1 parent 000134c commit e671583

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

quarkus-cxf.tf

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,12 @@ resource "github_branch" "quarkus_cxf" {
5858
resource "github_branch_default" "quarkus_cxf" {
5959
repository = github_repository.quarkus_cxf.name
6060
branch = github_branch.quarkus_cxf.branch
61-
}
61+
}
62+
63+
# Enable apps in repository
64+
resource "github_app_installation_repository" "quarkus_cxf" {
65+
for_each = { for app in [local.applications.lgtm] : app => app }
66+
# The installation id of the app (in the organization).
67+
installation_id = each.value
68+
repository = github_repository.quarkus_cxf.name
69+
}

0 commit comments

Comments
 (0)