From 95ecf9613b47a4e71e752cb3ae22ed3acb526eb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Fri, 29 Sep 2023 10:08:08 +0200 Subject: [PATCH] Add id and secret for CLA app (#73) --- service_hub_bots/main.tf | 2 ++ service_hub_bots/variables.tf | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/service_hub_bots/main.tf b/service_hub_bots/main.tf index 63de83c..25b2cb7 100644 --- a/service_hub_bots/main.tf +++ b/service_hub_bots/main.tf @@ -55,6 +55,8 @@ module "webservice_service_hub_bots" { { name : "DISCORD_GUILD_ID", value : var.discord_guild_id }, { name : "GITHUB_TOKEN", value : var.github_token }, { name : "GITHUB_APP_ID", value : var.github_app_id }, + { name : "GITHUB_CLA_SIGN_APP_ID", value : var.github_cla_app_id }, + { name : "GITHUB_CLA_SIGN_APP_SECRET", value : var.github_cla_app_secret }, { name : "GITHUB_INSTALLATION_ID", value : var.github_installation_id }, { name : "GITHUB_KEY_CONTENTS", value : var.github_key_contents }, { name : "GITHUB_WEBHOOK_SECRET", value : var.github_webhook_secret }, diff --git a/service_hub_bots/variables.tf b/service_hub_bots/variables.tf index a5dd0d2..cfa91fd 100644 --- a/service_hub_bots/variables.tf +++ b/service_hub_bots/variables.tf @@ -18,6 +18,14 @@ variable "github_app_id" { type = string } +variable "github_cla_app_id" { + type = string +} + +variable "github_cla_app_secret" { + type = string +} + variable "github_installation_id" { type = string }