We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 000134c commit e671583Copy full SHA for e671583
1 file changed
quarkus-cxf.tf
@@ -58,4 +58,12 @@ resource "github_branch" "quarkus_cxf" {
58
resource "github_branch_default" "quarkus_cxf" {
59
repository = github_repository.quarkus_cxf.name
60
branch = github_branch.quarkus_cxf.branch
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