Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 + Tailscale Integration

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

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