Back to Integrations
integrationAWS Lambda node
integrationSlack node

AWS Lambda and Slack integration

Save yourself the work of writing custom integrations for AWS Lambda and Slack and use n8n instead. Build adaptable and scalable Development, Communication, and HITL workflows that work with your technology stack. All within a building experience you will love.

How to connect AWS Lambda and Slack

  • Step 1: Create a new workflow
  • Step 2: Add and configure nodes
  • Step 3: Connect
  • Step 4: Customize and extend your integration
  • Step 5: Test and activate your workflow

Step 1: Create a new workflow and add the first step

In n8n, click the "Add workflow" button in the Workflows tab to create a new workflow. Add the starting point – a trigger on when your workflow should run: an app event, a schedule, a webhook call, another workflow, an AI chat, or a manual trigger. Sometimes, the HTTP Request node might already serve as your starting point.

AWS Lambda and Slack integration: Create a new workflow and add the first step

Step 2: Add and configure AWS Lambda and Slack nodes

You can find AWS Lambda and Slack in the nodes panel. Drag them onto your workflow canvas, selecting their actions. Click each node, choose a credential, and authenticate to grant n8n access. Configure AWS Lambda and Slack nodes one by one: input data on the left, parameters in the middle, and output data on the right.

AWS Lambda and Slack integration: Add and configure AWS Lambda and Slack nodes

Step 3: Connect AWS Lambda and Slack

A connection establishes a link between AWS Lambda and Slack (or vice versa) to route data through the workflow. Data flows from the output of one node to the input of another. You can have single or multiple connections for each node.

AWS Lambda and Slack integration: Connect AWS Lambda and Slack

Step 4: Customize and extend your AWS Lambda and Slack integration

Use n8n's core nodes such as If, Split Out, Merge, and others to transform and manipulate data. Write custom JavaScript or Python in the Code node and run it as a step in your workflow. Connect AWS Lambda and Slack with any of n8n’s 1000+ integrations, and incorporate advanced AI logic into your workflows.

AWS Lambda and Slack integration: Customize and extend your AWS Lambda and Slack integration

Step 5: Test and activate your AWS Lambda and Slack workflow

Save and run the workflow to see if everything works as expected. Based on your configuration, data should flow from AWS Lambda to Slack or vice versa. Easily debug your workflow: you can check past executions to isolate and fix the mistake. Once you've tested everything, make sure to save your workflow and activate it.

AWS Lambda and Slack integration: Test and activate your AWS Lambda and Slack workflow

Detect AWS Orphaned Resources & Send Cost Reports to Slack, Email, and Sheets

How it works

This workflow automatically scans AWS accounts for orphaned resources (unattached EBS volumes, old snapshots >90 days, unassociated Elastic IPs) that waste money. It calculates cost impact, validates compliance tags, and sends multi-channel alerts via Slack, Email, and Google Sheets audit logs.

Key Features:
🔍 Multi-region scanning with parallel execution
💰 Monthly/annual cost calculation with risk scoring
📊 Professional HTML reports with charts and tables
🏷️ Tag compliance validation (SOC2/ISO27001/HIPAA)
✅ Conditional alerting (only alerts when resources found)
📈 Google Sheets audit trail for trend analysis

What gets detected:
Unattached EBS volumes ($0.10/GB/month waste)
Snapshots older than 90 days ($0.05/GB/month)
Unassociated Elastic IPs ($3.60/month each)

Typical savings: $50-10K/month depending on account size

Set up steps

Prerequisites

AWS Configuration:
Create IAM user n8n-resource-scanner with these permissions:
ec2:DescribeVolumes
ec2:DescribeSnapshots
ec2:DescribeAddresses
ec2:DescribeInstances
lambda:InvokeFunction
Deploy Lambda function aws-orphaned-resource-scanner (Node.js 18+)
Add EC2 read-only permissions to Lambda execution role
Generate AWS Access Key + Secret Key

Lambda Function Code: See sticky notes in workflow for complete implementation using @aws-sdk/client-ec2

Credentials Required:
AWS IAM (Access Key + Secret)
Slack (OAuth2 or Webhook)
Gmail (OAuth2)
Google Sheets (OAuth2)

Configuration

Initialize Config Node: Update these settings:
awsRegions: Your AWS regions (default: us-east-1)
emailRecipients: FinOps team emails
slackChannel: Alert channel (e.g., #cloud-ops)
requiredTags: Compliance tags to validate
snapshotAgeDays: Age threshold (default: 90)

Set Region Variables: Choose regions to scan

Lambda Function: Deploy function with provided code (see workflow sticky notes)

Google Sheet: Create spreadsheet with headers:
Scan Date | Region | Resource Type | Resource ID | Monthly Cost | Compliance | etc.

Credentials: Connect all four credential types in n8n

Schedule: Enable "Weekly Scan Trigger" (default: Mondays 8 AM UTC)

Testing

Click "Execute Workflow" to run manual test
Verify Lambda invokes successfully
Check Slack alert appears
Confirm email with HTML report received
Validate Google Sheets logging works

Customization Options

Multi-region:** Add regions in "Initialize Config"
Alert thresholds:** Modify cost/age thresholds
Additional resource types:** Extend Lambda function
Custom tags:** Update required tags list
Schedule frequency:** Adjust cron trigger

Use Cases

FinOps Teams:** Automated cloud waste detection and cost reporting
Cloud Operations:** Weekly compliance and governance audits
DevOps:** Resource cleanup automation and alerting
Security/Compliance:** Tag validation for SOC2/ISO27001/HIPAA
Executive Reporting:** Monthly cost optimization metrics

Resources

AWS IAM Best Practices
Lambda Function Code

Nodes used in this workflow

Popular AWS Lambda and Slack workflows

Detect AWS Orphaned Resources & Send Cost Reports to Slack, Email, and Sheets

How it works This workflow automatically scans AWS accounts for orphaned resources (unattached EBS volumes, old snapshots >90 days, unassociated Elastic IPs) that waste money. It calculates cost impact, validates compliance tags, and sends multi-channel alerts via Slack, Email, and Google Sheets audit logs. Key Features: 🔍 Multi-region scanning with parallel execution 💰 Monthly/annual cost calculation with risk scoring 📊 Professional HTML reports with charts and tables 🏷️ Tag compliance validation (SOC2/ISO27001/HIPAA) ✅ Conditional alerting (only alerts when resources found) 📈 Google Sheets audit trail for trend analysis What gets detected: Unattached EBS volumes ($0.10/GB/month waste) Snapshots older than 90 days ($0.05/GB/month) Unassociated Elastic IPs ($3.60/month each) Typical savings: $50-10K/month depending on account size Set up steps Prerequisites AWS Configuration: Create IAM user n8n-resource-scanner with these permissions: ec2:DescribeVolumes ec2:DescribeSnapshots ec2:DescribeAddresses ec2:DescribeInstances lambda:InvokeFunction Deploy Lambda function aws-orphaned-resource-scanner (Node.js 18+) Add EC2 read-only permissions to Lambda execution role Generate AWS Access Key + Secret Key Lambda Function Code: See sticky notes in workflow for complete implementation using @aws-sdk/client-ec2 Credentials Required: AWS IAM (Access Key + Secret) Slack (OAuth2 or Webhook) Gmail (OAuth2) Google Sheets (OAuth2) Configuration Initialize Config Node: Update these settings: awsRegions: Your AWS regions (default: us-east-1) emailRecipients: FinOps team emails slackChannel: Alert channel (e.g., #cloud-ops) requiredTags: Compliance tags to validate snapshotAgeDays: Age threshold (default: 90) Set Region Variables: Choose regions to scan Lambda Function: Deploy function with provided code (see workflow sticky notes) Google Sheet: Create spreadsheet with headers: Scan Date | Region | Resource Type | Resource ID | Monthly Cost | Compliance | etc. Credentials: Connect all four credential types in n8n Schedule: Enable "Weekly Scan Trigger" (default: Mondays 8 AM UTC) Testing Click "Execute Workflow" to run manual test Verify Lambda invokes successfully Check Slack alert appears Confirm email with HTML report received Validate Google Sheets logging works Customization Options Multi-region:** Add regions in "Initialize Config" Alert thresholds:** Modify cost/age thresholds Additional resource types:** Extend Lambda function Custom tags:** Update required tags list Schedule frequency:** Adjust cron trigger Use Cases FinOps Teams:** Automated cloud waste detection and cost reporting Cloud Operations:** Weekly compliance and governance audits DevOps:** Resource cleanup automation and alerting Security/Compliance:** Tag validation for SOC2/ISO27001/HIPAA Executive Reporting:** Monthly cost optimization metrics Resources AWS IAM Best Practices Lambda Function Code

Build your own AWS Lambda and Slack integration

Create custom AWS Lambda and Slack workflows by choosing triggers and actions. Nodes come with global operations and settings, as well as app-specific parameters that can be configured. You can also use the HTTP Request node to query data from any app or service with a REST API.

AWS Lambda supported actions

Invoke
Invoke a function

Slack supported actions

Archive
Archives a conversation
Close
Closes a direct message or multi-person direct message
Create
Initiates a public or private channel-based conversation
Get
Get information about a channel
Get Many
Get many channels in a Slack team
History
Get a conversation's history of messages and events
Invite
Invite a user to a channel
Join
Joins an existing conversation
Kick
Removes a user from a channel
Leave
Leaves a conversation
Member
List members of a conversation
Open
Opens or resumes a direct message or multi-person direct message
Rename
Renames a conversation
Replies
Get a thread of messages posted to a channel
Set Purpose
Sets the purpose for a conversation
Set Topic
Sets the topic for a conversation
Unarchive
Unarchives a conversation
Get
Get Many
Get & filters team files
Upload
Create or upload an existing file
Delete
Get Permalink
Search
Send
Send and Wait for Response
Update
Add
Adds a reaction to a message
Get
Get the reactions of a message
Remove
Remove a reaction of a message
Add
Add a star to an item
Delete
Delete a star from an item
Get Many
Get many stars of autenticated user
Get
Get information about a user
Get Many
Get a list of many users
Get User's Profile
Get a user's profile
Get User's Status
Get online status of a user
Update User's Profile
Update a user's profile
Add Users
Create
Disable
Enable
Get Many
Get Users
Update

FAQs

  • Can AWS Lambda connect with Slack?

  • Can I use AWS Lambda’s API with n8n?

  • Can I use Slack’s API with n8n?

  • Is n8n secure for integrating AWS Lambda and Slack?

  • How to get started with AWS Lambda and Slack integration in n8n.io?

Need help setting up your AWS Lambda and Slack integration?

Discover our latest community's recommendations and join the discussions about AWS Lambda and Slack integration.
Nicolas N
Muhammed Iqbal P B
Nicolas N

Looking to integrate AWS Lambda and Slack in your company?

Over 3000 companies switch to n8n every single week

Why use n8n to integrate AWS Lambda with Slack

Build complex workflows, really fast

Build complex workflows, really fast

Handle branching, merging and iteration easily.
Pause your workflow to wait for external events.

Code when you need it, UI when you don't

Simple debugging

Your data is displayed alongside your settings, making edge cases easy to track down.

Use templates to get started fast

Use 1000+ workflow templates available from our core team and our community.

Reuse your work

Copy and paste, easily import and export workflows.

Implement complex processes faster with n8n

red iconyellow iconred iconyellow icon