Skip to content

Commit 42f550d

Browse files
committed
sync(integration): aws-lambda-github-issue
FolderOrigin-RevId: /home/runner/work/integrations/integrations/.
1 parent edf72c0 commit 42f550d

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/deploy.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ jobs:
6868
env:
6969
TF_VAR_indent_webhook_secret: ${{ secrets.INDENT_WEBHOOK_SECRET }}
7070
TF_VAR_gh_token: ${{ secrets.GH_TOKEN }}
71-
TF_VAR_github_org: ${{ secrets.GITHUB_ORG }}
72-
TF_VAR_github_repo: ${{ secrets.GITHUB_REPO }}
71+
TF_VAR_gh_org: ${{ secrets.GH_ORG }}
72+
TF_VAR_gh_repo: ${{ secrets.GH_REPO }}
7373
TF_VAR_indent_space_name: ${{ secrets.INDENT_SPACE_NAME }}
7474
- uses: actions/github-script@0.9.0
7575
if: github.event_name == 'pull_request'
@@ -102,8 +102,8 @@ jobs:
102102
env:
103103
TF_VAR_indent_webhook_secret: ${{ secrets.INDENT_WEBHOOK_SECRET }}
104104
TF_VAR_gh_token: ${{ secrets.GH_TOKEN }}
105-
TF_VAR_github_org: ${{ secrets.GITHUB_ORG }}
106-
TF_VAR_github_repo: ${{ secrets.GITHUB_REPO }}
105+
TF_VAR_gh_org: ${{ secrets.GH_ORG }}
106+
TF_VAR_gh_repo: ${{ secrets.GH_REPO }}
107107
TF_VAR_indent_space_name: ${{ secrets.INDENT_SPACE_NAME }}
108108
- name: Terraform Output
109109
if: github.ref == 'refs/heads/main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')

main.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@ terraform {
1010

1111
# Indent + GitHub Issues Integration
1212

13-
# Details: https://github.com/indentapis/integrations/tree/66ff4232954ef525f523a1cb8062e4509656de27/packages/stable/indent-integration-github-issue
14-
# Last Change: https://github.com/indentapis/integrations/commit/66ff4232954ef525f523a1cb8062e4509656de27
13+
# Details: https://github.com/indentapis/integrations/tree/c54ce183fc29fb15ed252d14561252792c7f3969/packages/stable/indent-integration-github-issue
14+
# Last Change: https://github.com/indentapis/integrations/commit/c54ce183fc29fb15ed252d14561252792c7f3969
1515

1616
module "idt-github-issue-webhook" {
1717
source = "git::https://github.com/indentapis/integrations//terraform/modules/indent_runtime_aws_lambda"
1818
name = "idt-github-issue-webhook"
1919
indent_webhook_secret = var.indent_webhook_secret
2020
artifact = {
2121
bucket = "indent-artifacts-us-west-2"
22-
function_key = "webhooks/aws/lambda/github-issue-66ff4232954ef525f523a1cb8062e4509656de27-function.zip"
23-
deps_key = "webhooks/aws/lambda/github-issue-66ff4232954ef525f523a1cb8062e4509656de27-deps.zip"
22+
function_key = "webhooks/aws/lambda/github-issue-c54ce183fc29fb15ed252d14561252792c7f3969-function.zip"
23+
deps_key = "webhooks/aws/lambda/github-issue-c54ce183fc29fb15ed252d14561252792c7f3969-deps.zip"
2424
}
2525
env = {
2626
GH_TOKEN = var.gh_token
27-
GITHUB_ORG = var.github_org
28-
GITHUB_REPO = var.github_repo
27+
GH_ORG = var.gh_org
28+
GH_REPO = var.gh_repo
2929
INDENT_SPACE_NAME = var.indent_space_name
3030
}
3131
}

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ variable "gh_token" {
1919
sensitive = true
2020
}
2121

22-
variable "github_org" {
22+
variable "gh_org" {
2323
type = string
2424
default = ""
2525
sensitive = true
2626
}
2727

28-
variable "github_repo" {
28+
variable "gh_repo" {
2929
type = string
3030
default = ""
3131
sensitive = true

0 commit comments

Comments
 (0)