Skip to content

Commit

Permalink
Add id and secret for CLA app (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus authored Sep 29, 2023
1 parent c79c3f2 commit 95ecf96
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions service_hub_bots/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand Down
8 changes: 8 additions & 0 deletions service_hub_bots/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 95ecf96

Please sign in to comment.