> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nuon.co/llms.txt
> Use this file to discover all available pages before exploring further.

# 034 - Slack Integration, Webhooks, and AWS Terraform Stacks

> Slack notifications, org-scoped webhooks, and Terraform stacks for AWS.

*May 12, 2026*

## Slack integration

The Nuon Slack app is now available. Connect a workspace from your org's **Slack** page in the [dashboard](https://app.nuon.co/), then run `/nuon subscribe` in any channel to route install, workflow, approval, and drift events into Slack.

<div
  style={{
backgroundImage: 'url(https://mintcdn.com/nuoninc/GHPrxpfE8HIHkNXa/images/changelog/034-slack-bg.png?fit=max&auto=format&n=GHPrxpfE8HIHkNXa&q=85&s=453a82b6fe58d66c94567fb61e2f1701)',
backgroundSize: 'cover',
backgroundPosition: 'center',
padding: '48px 24px',
borderRadius: '12px',
display: 'flex',
justifyContent: 'center',
margin: '24px 0'
}}
>
  <img
    src="https://mintcdn.com/nuoninc/GHPrxpfE8HIHkNXa/images/changelog/034-subscribe-channel-modal.png?fit=max&auto=format&n=GHPrxpfE8HIHkNXa&q=85&s=28af6637945e3a0b6a4560fc979411fe"
    alt="Subscribe a channel modal"
    style={{
  width: '100%',
  maxWidth: '420px',
  borderRadius: '8px',
  boxShadow: '0 20px 60px rgba(0,0,0,0.4)'
}}
    width="1184"
    height="1380"
    data-path="images/changelog/034-subscribe-channel-modal.png"
  />
</div>

See the [Slack guide](/guides/slack) for the full walkthrough — workspace linking, channel subscriptions, slash commands, and how events render in threads.

## Webhooks

Org-scoped [Webhooks](/guides/webhooks) are now available. Nuon now POSTs workflow and workflow step lifecycle events to any HTTPS endpoint you register on your Org.

Manage webhooks from your org's **Webhooks** page in the [dashboard](https://app.nuon.co/) or from the CLI:

```sh theme={null}
# List webhooks for the current Org
nuon orgs webhooks list

# Create a webhook (URL is required, secret is optional)
nuon orgs webhooks create --url https://example.com/webhooks/nuon --secret <shared-secret>

# Update a webhook's subscription scope and event filter
nuon orgs webhooks update --webhook-id <webhook_id> --subscription-file ./subscription.json
```

Each webhook supports an [interests filter](/guides/webhooks#filtering-events-with-interests) that narrows down which events get delivered, and a [match predicate](/guides/webhooks#scoping-deliveries-with-match) that scopes deliveries to specific installs, components, or actions.

## Terraform Stack template for AWS

You can now provision [Stacks](/concepts/stacks) for AWS installs using Terraform.

<img src="https://mintcdn.com/nuoninc/fVR1KMgnmEDzSoCm/images/changelog/034-aws-tf-stack-await-install-stack.png?fit=max&auto=format&n=fVR1KMgnmEDzSoCm&q=85&s=f2b27e5eec0e70402feafc55cb7d8b97" alt="aws await install stack screenshot" width="3352" height="1886" data-path="images/changelog/034-aws-tf-stack-await-install-stack.png" />

Cloudformation is still supported, and you can choose either option when creating an install. The Terraform template will create the same resources as the Cloudformation template, and the resulting Stack will function exactly the same. The template is open source and can be found in the [nuonco/install-stacks](https://github.com/nuonco/install-stacks) repo.

If you use [custom nested stacks](/guides/custom-nested-stacks) in the Cloudformation template, you can customize the Terraform template by forking the repo, just like you would for any other Terraform module. Read the [Customizing Terraform Stack Templates](/guides/customizing-terraform-stack-templates) guide for more details.

## Also in this release

* **AWS install stacks now use IID-based runner auth by default.**
* **Workflow timeouts** apply at every stage of execution.
* **Dashboard refinements** across policy reports, install navigation, and the trace viewer.
