{"id":13505659,"url":"https://github.com/terraform-aws-modules/terraform-aws-notify-slack","last_synced_at":"2025-05-16T09:04:36.095Z","repository":{"id":29245303,"uuid":"120632979","full_name":"terraform-aws-modules/terraform-aws-notify-slack","owner":"terraform-aws-modules","description":"Terraform module to create AWS resources for sending notifications to Slack 🇺🇦","archived":false,"fork":false,"pushed_at":"2025-03-29T22:58:30.000Z","size":232,"stargazers_count":478,"open_issues_count":3,"forks_count":345,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-04-13T23:54:56.254Z","etag":null,"topics":["aws","aws-cloudwatch","aws-lambda","slack","terraform-module"],"latest_commit_sha":null,"homepage":"https://registry.terraform.io/modules/terraform-aws-modules/notify-slack/aws","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/terraform-aws-modules.png","metadata":{"funding":{"github":["antonbabenko"],"custom":"https://www.paypal.me/antonbabenko"},"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-02-07T15:29:01.000Z","updated_at":"2025-04-04T04:44:08.000Z","dependencies_parsed_at":"2023-12-12T00:55:28.140Z","dependency_job_id":"16e057a8-9f0e-43f1-bd34-becd174d25a7","html_url":"https://github.com/terraform-aws-modules/terraform-aws-notify-slack","commit_stats":{"total_commits":185,"total_committers":53,"mean_commits":3.490566037735849,"dds":0.5783783783783784,"last_synced_commit":"50b951a333ebab734c5afba984f0584fd1b43dd7"},"previous_names":[],"tags_count":85,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terraform-aws-modules%2Fterraform-aws-notify-slack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terraform-aws-modules%2Fterraform-aws-notify-slack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terraform-aws-modules%2Fterraform-aws-notify-slack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terraform-aws-modules%2Fterraform-aws-notify-slack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/terraform-aws-modules","download_url":"https://codeload.github.com/terraform-aws-modules/terraform-aws-notify-slack/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254501556,"owners_count":22081528,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","aws-cloudwatch","aws-lambda","slack","terraform-module"],"created_at":"2024-08-01T00:01:11.262Z","updated_at":"2025-05-16T09:04:36.070Z","avatar_url":"https://github.com/terraform-aws-modules.png","language":"Python","funding_links":["https://github.com/sponsors/antonbabenko","https://www.paypal.me/antonbabenko"],"categories":["Python","Community Modules"],"sub_categories":["Miscellaneous"],"readme":"# AWS Notify Slack Terraform module\n\nThis module creates an SNS topic (or uses an existing one) and an AWS Lambda function that sends notifications to Slack using the [incoming webhooks API](https://api.slack.com/incoming-webhooks).\n\nStart by setting up an [incoming webhook integration](https://my.slack.com/services/new/incoming-webhook/) in your Slack workspace.\n\nDoing serverless with Terraform? Check out [serverless.tf framework](https://serverless.tf), which aims to simplify all operations when working with the serverless in Terraform.\n\n## Supported Features\n\n- AWS Lambda runtime Python 3.11\n- Create new SNS topic or use existing one\n- Support plaintext and encrypted version of Slack webhook URL\n- Most of Slack message options are customizable\n- Custom Lambda function\n- Various event types are supported, even generic messages:\n  - AWS CloudWatch Alarms\n  - AWS CloudWatch LogMetrics Alarms\n  - AWS GuardDuty Findings\n\n## Usage\n\n```hcl\nmodule \"notify_slack\" {\n  source  = \"terraform-aws-modules/notify-slack/aws\"\n  version = \"~\u003e 5.0\"\n\n  sns_topic_name = \"slack-topic\"\n\n  slack_webhook_url = \"https://hooks.slack.com/services/AAA/BBB/CCC\"\n  slack_channel     = \"aws-notification\"\n  slack_username    = \"reporter\"\n}\n```\n\n## Using with Terraform Cloud Agents\n\n[Terraform Cloud Agents](https://www.terraform.io/docs/cloud/workspaces/agent.html) are a paid feature, available as part of the Terraform Cloud for Business upgrade package.\n\nThis module requires Python 3.11. You can customize [tfc-agent](https://hub.docker.com/r/hashicorp/tfc-agent) to include Python using this sample `Dockerfile`:\n\n```Dockerfile\nFROM hashicorp/tfc-agent:latest\nRUN apt-get -y update \u0026\u0026 apt-get -y install python3.11 python3-pip\nENTRYPOINT [\"/bin/tfc-agent\"]\n```\n\n## Use existing SNS topic or create new\n\nIf you want to subscribe the AWS Lambda Function created by this module to an existing SNS topic you should specify `create_sns_topic = false` as an argument and specify the name of existing SNS topic name in `sns_topic_name`.\n\n## Examples\n\n- [notify-slack-simple](https://github.com/terraform-aws-modules/terraform-aws-notify-slack/tree/master/examples/notify-slack-simple) - Creates SNS topic which sends messages to Slack channel.\n- [cloudwatch-alerts-to-slack](https://github.com/terraform-aws-modules/terraform-aws-notify-slack/tree/master/examples/cloudwatch-alerts-to-slack) - End to end example which shows how to send AWS Cloudwatch alerts to Slack channel and use KMS to encrypt webhook URL.\n\n## Local Development and Testing\n\nSee the [functions](https://github.com/terraform-aws-modules/terraform-aws-notify-slack/tree/master/functions) for further details.\n\n\u003c!-- BEGIN_TF_DOCS --\u003e\n## Requirements\n\n| Name | Version |\n|------|---------|\n| \u003ca name=\"requirement_terraform\"\u003e\u003c/a\u003e [terraform](#requirement\\_terraform) | \u003e= 1.0 |\n| \u003ca name=\"requirement_aws\"\u003e\u003c/a\u003e [aws](#requirement\\_aws) | \u003e= 4.8 |\n\n## Providers\n\n| Name | Version |\n|------|---------|\n| \u003ca name=\"provider_aws\"\u003e\u003c/a\u003e [aws](#provider\\_aws) | \u003e= 4.8 |\n\n## Modules\n\n| Name | Source | Version |\n|------|--------|---------|\n| \u003ca name=\"module_lambda\"\u003e\u003c/a\u003e [lambda](#module\\_lambda) | terraform-aws-modules/lambda/aws | 6.8.0 |\n\n## Resources\n\n| Name | Type |\n|------|------|\n| [aws_cloudwatch_log_group.lambda](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/cloudwatch_log_group) | resource |\n| [aws_iam_role.sns_feedback_role](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role) | resource |\n| [aws_sns_topic.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/sns_topic) | resource |\n| [aws_sns_topic_subscription.sns_notify_slack](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/sns_topic_subscription) | resource |\n| [aws_caller_identity.current](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/caller_identity) | data source |\n| [aws_iam_policy_document.lambda](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_policy_document) | data source |\n| [aws_iam_policy_document.sns_feedback](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_policy_document) | data source |\n| [aws_partition.current](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/partition) | data source |\n| [aws_region.current](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/region) | data source |\n\n## Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|------|---------|:--------:|\n| \u003ca name=\"input_architectures\"\u003e\u003c/a\u003e [architectures](#input\\_architectures) | Instruction set architecture for your Lambda function. Valid values are [\"x86\\_64\"] and [\"arm64\"]. | `list(string)` | `null` | no |\n| \u003ca name=\"input_cloudwatch_log_group_kms_key_id\"\u003e\u003c/a\u003e [cloudwatch\\_log\\_group\\_kms\\_key\\_id](#input\\_cloudwatch\\_log\\_group\\_kms\\_key\\_id) | The ARN of the KMS Key to use when encrypting log data for Lambda | `string` | `null` | no |\n| \u003ca name=\"input_cloudwatch_log_group_retention_in_days\"\u003e\u003c/a\u003e [cloudwatch\\_log\\_group\\_retention\\_in\\_days](#input\\_cloudwatch\\_log\\_group\\_retention\\_in\\_days) | Specifies the number of days you want to retain log events in log group for Lambda. | `number` | `0` | no |\n| \u003ca name=\"input_cloudwatch_log_group_tags\"\u003e\u003c/a\u003e [cloudwatch\\_log\\_group\\_tags](#input\\_cloudwatch\\_log\\_group\\_tags) | Additional tags for the Cloudwatch log group | `map(string)` | `{}` | no |\n| \u003ca name=\"input_create\"\u003e\u003c/a\u003e [create](#input\\_create) | Whether to create all resources | `bool` | `true` | no |\n| \u003ca name=\"input_create_sns_topic\"\u003e\u003c/a\u003e [create\\_sns\\_topic](#input\\_create\\_sns\\_topic) | Whether to create new SNS topic | `bool` | `true` | no |\n| \u003ca name=\"input_enable_sns_topic_delivery_status_logs\"\u003e\u003c/a\u003e [enable\\_sns\\_topic\\_delivery\\_status\\_logs](#input\\_enable\\_sns\\_topic\\_delivery\\_status\\_logs) | Whether to enable SNS topic delivery status logs | `bool` | `false` | no |\n| \u003ca name=\"input_hash_extra\"\u003e\u003c/a\u003e [hash\\_extra](#input\\_hash\\_extra) | The string to add into hashing function. Useful when building same source path for different functions. | `string` | `\"\"` | no |\n| \u003ca name=\"input_iam_policy_path\"\u003e\u003c/a\u003e [iam\\_policy\\_path](#input\\_iam\\_policy\\_path) | Path of policies to that should be added to IAM role for Lambda Function | `string` | `null` | no |\n| \u003ca name=\"input_iam_role_boundary_policy_arn\"\u003e\u003c/a\u003e [iam\\_role\\_boundary\\_policy\\_arn](#input\\_iam\\_role\\_boundary\\_policy\\_arn) | The ARN of the policy that is used to set the permissions boundary for the role | `string` | `null` | no |\n| \u003ca name=\"input_iam_role_name_prefix\"\u003e\u003c/a\u003e [iam\\_role\\_name\\_prefix](#input\\_iam\\_role\\_name\\_prefix) | A unique role name beginning with the specified prefix | `string` | `\"lambda\"` | no |\n| \u003ca name=\"input_iam_role_path\"\u003e\u003c/a\u003e [iam\\_role\\_path](#input\\_iam\\_role\\_path) | Path of IAM role to use for Lambda Function | `string` | `null` | no |\n| \u003ca name=\"input_iam_role_tags\"\u003e\u003c/a\u003e [iam\\_role\\_tags](#input\\_iam\\_role\\_tags) | Additional tags for the IAM role | `map(string)` | `{}` | no |\n| \u003ca name=\"input_kms_key_arn\"\u003e\u003c/a\u003e [kms\\_key\\_arn](#input\\_kms\\_key\\_arn) | ARN of the KMS key used for decrypting slack webhook url | `string` | `\"\"` | no |\n| \u003ca name=\"input_lambda_attach_dead_letter_policy\"\u003e\u003c/a\u003e [lambda\\_attach\\_dead\\_letter\\_policy](#input\\_lambda\\_attach\\_dead\\_letter\\_policy) | Controls whether SNS/SQS dead letter notification policy should be added to IAM role for Lambda Function | `bool` | `false` | no |\n| \u003ca name=\"input_lambda_dead_letter_target_arn\"\u003e\u003c/a\u003e [lambda\\_dead\\_letter\\_target\\_arn](#input\\_lambda\\_dead\\_letter\\_target\\_arn) | The ARN of an SNS topic or SQS queue to notify when an invocation fails. | `string` | `null` | no |\n| \u003ca name=\"input_lambda_description\"\u003e\u003c/a\u003e [lambda\\_description](#input\\_lambda\\_description) | The description of the Lambda function | `string` | `null` | no |\n| \u003ca name=\"input_lambda_function_ephemeral_storage_size\"\u003e\u003c/a\u003e [lambda\\_function\\_ephemeral\\_storage\\_size](#input\\_lambda\\_function\\_ephemeral\\_storage\\_size) | Amount of ephemeral storage (/tmp) in MB your Lambda Function can use at runtime. Valid value between 512 MB to 10,240 MB (10 GB). | `number` | `512` | no |\n| \u003ca name=\"input_lambda_function_name\"\u003e\u003c/a\u003e [lambda\\_function\\_name](#input\\_lambda\\_function\\_name) | The name of the Lambda function to create | `string` | `\"notify_slack\"` | no |\n| \u003ca name=\"input_lambda_function_s3_bucket\"\u003e\u003c/a\u003e [lambda\\_function\\_s3\\_bucket](#input\\_lambda\\_function\\_s3\\_bucket) | S3 bucket to store artifacts | `string` | `null` | no |\n| \u003ca name=\"input_lambda_function_store_on_s3\"\u003e\u003c/a\u003e [lambda\\_function\\_store\\_on\\_s3](#input\\_lambda\\_function\\_store\\_on\\_s3) | Whether to store produced artifacts on S3 or locally. | `bool` | `false` | no |\n| \u003ca name=\"input_lambda_function_tags\"\u003e\u003c/a\u003e [lambda\\_function\\_tags](#input\\_lambda\\_function\\_tags) | Additional tags for the Lambda function | `map(string)` | `{}` | no |\n| \u003ca name=\"input_lambda_function_vpc_security_group_ids\"\u003e\u003c/a\u003e [lambda\\_function\\_vpc\\_security\\_group\\_ids](#input\\_lambda\\_function\\_vpc\\_security\\_group\\_ids) | List of security group ids when Lambda Function should run in the VPC. | `list(string)` | `null` | no |\n| \u003ca name=\"input_lambda_function_vpc_subnet_ids\"\u003e\u003c/a\u003e [lambda\\_function\\_vpc\\_subnet\\_ids](#input\\_lambda\\_function\\_vpc\\_subnet\\_ids) | List of subnet ids when Lambda Function should run in the VPC. Usually private or intra subnets. | `list(string)` | `null` | no |\n| \u003ca name=\"input_lambda_role\"\u003e\u003c/a\u003e [lambda\\_role](#input\\_lambda\\_role) | IAM role attached to the Lambda Function.  If this is set then a role will not be created for you. | `string` | `\"\"` | no |\n| \u003ca name=\"input_lambda_source_path\"\u003e\u003c/a\u003e [lambda\\_source\\_path](#input\\_lambda\\_source\\_path) | The source path of the custom Lambda function | `string` | `null` | no |\n| \u003ca name=\"input_log_events\"\u003e\u003c/a\u003e [log\\_events](#input\\_log\\_events) | Boolean flag to enabled/disable logging of incoming events | `bool` | `false` | no |\n| \u003ca name=\"input_putin_khuylo\"\u003e\u003c/a\u003e [putin\\_khuylo](#input\\_putin\\_khuylo) | Do you agree that Putin doesn't respect Ukrainian sovereignty and territorial integrity? More info: https://en.wikipedia.org/wiki/Putin_khuylo! | `bool` | `true` | no |\n| \u003ca name=\"input_recreate_missing_package\"\u003e\u003c/a\u003e [recreate\\_missing\\_package](#input\\_recreate\\_missing\\_package) | Whether to recreate missing Lambda package if it is missing locally or not | `bool` | `true` | no |\n| \u003ca name=\"input_reserved_concurrent_executions\"\u003e\u003c/a\u003e [reserved\\_concurrent\\_executions](#input\\_reserved\\_concurrent\\_executions) | The amount of reserved concurrent executions for this lambda function. A value of 0 disables lambda from being triggered and -1 removes any concurrency limitations | `number` | `-1` | no |\n| \u003ca name=\"input_slack_channel\"\u003e\u003c/a\u003e [slack\\_channel](#input\\_slack\\_channel) | The name of the channel in Slack for notifications | `string` | n/a | yes |\n| \u003ca name=\"input_slack_emoji\"\u003e\u003c/a\u003e [slack\\_emoji](#input\\_slack\\_emoji) | A custom emoji that will appear on Slack messages | `string` | `\":aws:\"` | no |\n| \u003ca name=\"input_slack_username\"\u003e\u003c/a\u003e [slack\\_username](#input\\_slack\\_username) | The username that will appear on Slack messages | `string` | n/a | yes |\n| \u003ca name=\"input_slack_webhook_url\"\u003e\u003c/a\u003e [slack\\_webhook\\_url](#input\\_slack\\_webhook\\_url) | The URL of Slack webhook | `string` | n/a | yes |\n| \u003ca name=\"input_sns_topic_feedback_role_description\"\u003e\u003c/a\u003e [sns\\_topic\\_feedback\\_role\\_description](#input\\_sns\\_topic\\_feedback\\_role\\_description) | Description of IAM role to use for SNS topic delivery status logging | `string` | `null` | no |\n| \u003ca name=\"input_sns_topic_feedback_role_force_detach_policies\"\u003e\u003c/a\u003e [sns\\_topic\\_feedback\\_role\\_force\\_detach\\_policies](#input\\_sns\\_topic\\_feedback\\_role\\_force\\_detach\\_policies) | Specifies to force detaching any policies the IAM role has before destroying it. | `bool` | `true` | no |\n| \u003ca name=\"input_sns_topic_feedback_role_name\"\u003e\u003c/a\u003e [sns\\_topic\\_feedback\\_role\\_name](#input\\_sns\\_topic\\_feedback\\_role\\_name) | Name of the IAM role to use for SNS topic delivery status logging | `string` | `null` | no |\n| \u003ca name=\"input_sns_topic_feedback_role_path\"\u003e\u003c/a\u003e [sns\\_topic\\_feedback\\_role\\_path](#input\\_sns\\_topic\\_feedback\\_role\\_path) | Path of IAM role to use for SNS topic delivery status logging | `string` | `null` | no |\n| \u003ca name=\"input_sns_topic_feedback_role_permissions_boundary\"\u003e\u003c/a\u003e [sns\\_topic\\_feedback\\_role\\_permissions\\_boundary](#input\\_sns\\_topic\\_feedback\\_role\\_permissions\\_boundary) | The ARN of the policy that is used to set the permissions boundary for the IAM role used by SNS topic delivery status logging | `string` | `null` | no |\n| \u003ca name=\"input_sns_topic_feedback_role_tags\"\u003e\u003c/a\u003e [sns\\_topic\\_feedback\\_role\\_tags](#input\\_sns\\_topic\\_feedback\\_role\\_tags) | A map of tags to assign to IAM the SNS topic feedback role | `map(string)` | `{}` | no |\n| \u003ca name=\"input_sns_topic_kms_key_id\"\u003e\u003c/a\u003e [sns\\_topic\\_kms\\_key\\_id](#input\\_sns\\_topic\\_kms\\_key\\_id) | ARN of the KMS key used for enabling SSE on the topic | `string` | `\"\"` | no |\n| \u003ca name=\"input_sns_topic_lambda_feedback_role_arn\"\u003e\u003c/a\u003e [sns\\_topic\\_lambda\\_feedback\\_role\\_arn](#input\\_sns\\_topic\\_lambda\\_feedback\\_role\\_arn) | IAM role for SNS topic delivery status logs.  If this is set then a role will not be created for you. | `string` | `\"\"` | no |\n| \u003ca name=\"input_sns_topic_lambda_feedback_sample_rate\"\u003e\u003c/a\u003e [sns\\_topic\\_lambda\\_feedback\\_sample\\_rate](#input\\_sns\\_topic\\_lambda\\_feedback\\_sample\\_rate) | The percentage of successful deliveries to log | `number` | `100` | no |\n| \u003ca name=\"input_sns_topic_name\"\u003e\u003c/a\u003e [sns\\_topic\\_name](#input\\_sns\\_topic\\_name) | The name of the SNS topic to create | `string` | n/a | yes |\n| \u003ca name=\"input_sns_topic_tags\"\u003e\u003c/a\u003e [sns\\_topic\\_tags](#input\\_sns\\_topic\\_tags) | Additional tags for the SNS topic | `map(string)` | `{}` | no |\n| \u003ca name=\"input_subscription_filter_policy\"\u003e\u003c/a\u003e [subscription\\_filter\\_policy](#input\\_subscription\\_filter\\_policy) | (Optional) A valid filter policy that will be used in the subscription to filter messages seen by the target resource. | `string` | `null` | no |\n| \u003ca name=\"input_subscription_filter_policy_scope\"\u003e\u003c/a\u003e [subscription\\_filter\\_policy\\_scope](#input\\_subscription\\_filter\\_policy\\_scope) | (Optional) A valid filter policy scope MessageAttributes\\|MessageBody | `string` | `null` | no |\n| \u003ca name=\"input_tags\"\u003e\u003c/a\u003e [tags](#input\\_tags) | A map of tags to add to all resources | `map(string)` | `{}` | no |\n| \u003ca name=\"input_trigger_on_package_timestamp\"\u003e\u003c/a\u003e [trigger\\_on\\_package\\_timestamp](#input\\_trigger\\_on\\_package\\_timestamp) | (Optional) Whether or not to ignore the file timestamp when deciding to create the archive | `bool` | `false` | no |\n\n## Outputs\n\n| Name | Description |\n|------|-------------|\n| \u003ca name=\"output_lambda_cloudwatch_log_group_arn\"\u003e\u003c/a\u003e [lambda\\_cloudwatch\\_log\\_group\\_arn](#output\\_lambda\\_cloudwatch\\_log\\_group\\_arn) | The Amazon Resource Name (ARN) specifying the log group |\n| \u003ca name=\"output_lambda_iam_role_arn\"\u003e\u003c/a\u003e [lambda\\_iam\\_role\\_arn](#output\\_lambda\\_iam\\_role\\_arn) | The ARN of the IAM role used by Lambda function |\n| \u003ca name=\"output_lambda_iam_role_name\"\u003e\u003c/a\u003e [lambda\\_iam\\_role\\_name](#output\\_lambda\\_iam\\_role\\_name) | The name of the IAM role used by Lambda function |\n| \u003ca name=\"output_notify_slack_lambda_function_arn\"\u003e\u003c/a\u003e [notify\\_slack\\_lambda\\_function\\_arn](#output\\_notify\\_slack\\_lambda\\_function\\_arn) | The ARN of the Lambda function |\n| \u003ca name=\"output_notify_slack_lambda_function_invoke_arn\"\u003e\u003c/a\u003e [notify\\_slack\\_lambda\\_function\\_invoke\\_arn](#output\\_notify\\_slack\\_lambda\\_function\\_invoke\\_arn) | The ARN to be used for invoking Lambda function from API Gateway |\n| \u003ca name=\"output_notify_slack_lambda_function_last_modified\"\u003e\u003c/a\u003e [notify\\_slack\\_lambda\\_function\\_last\\_modified](#output\\_notify\\_slack\\_lambda\\_function\\_last\\_modified) | The date Lambda function was last modified |\n| \u003ca name=\"output_notify_slack_lambda_function_name\"\u003e\u003c/a\u003e [notify\\_slack\\_lambda\\_function\\_name](#output\\_notify\\_slack\\_lambda\\_function\\_name) | The name of the Lambda function |\n| \u003ca name=\"output_notify_slack_lambda_function_version\"\u003e\u003c/a\u003e [notify\\_slack\\_lambda\\_function\\_version](#output\\_notify\\_slack\\_lambda\\_function\\_version) | Latest published version of your Lambda function |\n| \u003ca name=\"output_slack_topic_arn\"\u003e\u003c/a\u003e [slack\\_topic\\_arn](#output\\_slack\\_topic\\_arn) | The ARN of the SNS topic from which messages will be sent to Slack |\n| \u003ca name=\"output_sns_topic_feedback_role_arn\"\u003e\u003c/a\u003e [sns\\_topic\\_feedback\\_role\\_arn](#output\\_sns\\_topic\\_feedback\\_role\\_arn) | The Amazon Resource Name (ARN) of the IAM role used for SNS delivery status logging |\n| \u003ca name=\"output_this_slack_topic_arn\"\u003e\u003c/a\u003e [this\\_slack\\_topic\\_arn](#output\\_this\\_slack\\_topic\\_arn) | The ARN of the SNS topic from which messages will be sent to Slack (backward compatibility for version 4.x) |\n\u003c!-- END_TF_DOCS --\u003e\n\n## Authors\n\nModule is maintained by [Anton Babenko](https://github.com/antonbabenko) with help from [these awesome contributors](https://github.com/terraform-aws-modules/terraform-aws-notify-slack/graphs/contributors).\n\n## License\n\nApache 2 Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-aws-notify-slack/tree/master/LICENSE) for full details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fterraform-aws-modules%2Fterraform-aws-notify-slack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fterraform-aws-modules%2Fterraform-aws-notify-slack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fterraform-aws-modules%2Fterraform-aws-notify-slack/lists"}