Skip to content

Commit

Permalink
sync(integration): aws-lambda-incidentio (#4)
Browse files Browse the repository at this point in the history
FolderOrigin-RevId: /home/runner/work/integrations/integrations/.
  • Loading branch information
indent-bot authored Oct 4, 2023
1 parent cb6ced6 commit d0696e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
name: Validate
runs-on: ubuntu-latest
outputs:
status: ${{ steps.early.outputs.status }}
status: ${{ steps.envcheck.outputs.status }}
steps:
- name: Checkout
uses: actions/checkout@v3
- id: Envcheck
- id: envcheck
name: Check environment variables
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
Expand Down
8 changes: 4 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ terraform {

# Indent + Incident.io Integration

# Details: https://github.com/indentapis/integrations/tree/df7a83d97d7220dc20566871e81d90a20ec160e0/packages/stable/indent-integration-incidentio
# Last Change: https://github.com/indentapis/integrations/commit/df7a83d97d7220dc20566871e81d90a20ec160e0
# Details: https://github.com/indentapis/integrations/tree/089e36c98bd88726dc6751edf90767725d3d0b35/packages/stable/indent-integration-incidentio
# Last Change: https://github.com/indentapis/integrations/commit/089e36c98bd88726dc6751edf90767725d3d0b35

module "idt-incidentio-webhook" {
source = "git::https://github.com/indentapis/integrations//terraform/modules/indent_runtime_aws_lambda"
name = "idt-incidentio-webhook"
indent_webhook_secret = var.indent_webhook_secret
artifact = {
bucket = "indent-artifacts-us-west-2"
function_key = "webhooks/aws/lambda/incidentio-df7a83d97d7220dc20566871e81d90a20ec160e0-function.zip"
deps_key = "webhooks/aws/lambda/incidentio-df7a83d97d7220dc20566871e81d90a20ec160e0-deps.zip"
function_key = "webhooks/aws/lambda/incidentio-089e36c98bd88726dc6751edf90767725d3d0b35-function.zip"
deps_key = "webhooks/aws/lambda/incidentio-089e36c98bd88726dc6751edf90767725d3d0b35-deps.zip"
}
env = {
INCIDENTIO_API_KEY = var.incidentio_api_key
Expand Down

0 comments on commit d0696e4

Please sign in to comment.