{"id":20656345,"url":"https://github.com/flaconi/terraform-aws-sns-topic-subscriptions","last_synced_at":"2025-04-19T12:23:22.844Z","repository":{"id":38241430,"uuid":"203132813","full_name":"Flaconi/terraform-aws-sns-topic-subscriptions","owner":"Flaconi","description":null,"archived":false,"fork":false,"pushed_at":"2023-02-14T14:25:21.000Z","size":23,"stargazers_count":2,"open_issues_count":0,"forks_count":3,"subscribers_count":11,"default_branch":"master","last_synced_at":"2023-03-01T19:23:38.913Z","etag":null,"topics":["aws","aws-sns","aws-sns-topic","terraform","terraform-module"],"latest_commit_sha":null,"homepage":"","language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Flaconi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null}},"created_at":"2019-08-19T08:39:41.000Z","updated_at":"2023-02-14T14:29:05.000Z","dependencies_parsed_at":"2022-09-04T23:51:28.762Z","dependency_job_id":null,"html_url":"https://github.com/Flaconi/terraform-aws-sns-topic-subscriptions","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Flaconi%2Fterraform-aws-sns-topic-subscriptions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Flaconi%2Fterraform-aws-sns-topic-subscriptions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Flaconi%2Fterraform-aws-sns-topic-subscriptions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Flaconi%2Fterraform-aws-sns-topic-subscriptions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Flaconi","download_url":"https://codeload.github.com/Flaconi/terraform-aws-sns-topic-subscriptions/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224951615,"owners_count":17397425,"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-sns","aws-sns-topic","terraform","terraform-module"],"created_at":"2024-11-16T18:14:52.511Z","updated_at":"2025-04-19T12:23:22.823Z","avatar_url":"https://github.com/Flaconi.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AWS SNS Topic Subscriptions\n\n[![Build Status](https://travis-ci.com/Flaconi/terraform-aws-sns-topic-subscriptions.svg?branch=master)](https://travis-ci.com/Flaconi/terraform-aws-waf-acl-rules)\n[![Tag](https://img.shields.io/github/tag/Flaconi/terraform-aws-sns-topic-subscriptions.svg)](https://github.com/Flaconi/terraform-aws-waf-acl-rules/releases)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n\nThis Terraform module creates SNS Topic subcriptions from a list of input\n\n## Usage\n\n### sns_topic_subscriptions\n\n```hcl\nlocals {\n  sns_topic_subscriptions = [\n    {\n      name                   = \"random_named\"\n      topic_arn              = \"arn:aws:sns:us-east-1:806199016981:AmazonIpSpaceChanged\"\n      protocol               = \"lambda\"\n      endpoint               = \"some_arn\"\n      endpoint_auto_confirms = true\n    },\n    {\n      name                   = \"random_named2\"\n      topic_arn              = \"arn:aws:sns:us-east-1:806199016981:AmazonIpSpaceChanged\"\n      protocol               = \"lambda\"\n      endpoint               = \"some_arn2\"\n      endpoint_auto_confirms = false\n    },\n  ]\n}\n\n\nmodule \"subscriptions\" {\n  source                  = \"../../\"\n  sns_topic_subscriptions = local.sns_topic_subscriptions\n}\n```\n\n\u003c!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK --\u003e\n## Requirements\n\n| Name | Version |\n|------|---------|\n| \u003ca name=\"requirement_terraform\"\u003e\u003c/a\u003e [terraform](#requirement\\_terraform) | \u003e= 0.12.26 |\n| \u003ca name=\"requirement_aws\"\u003e\u003c/a\u003e [aws](#requirement\\_aws) | \u003e= 3 |\n\n## Providers\n\n| Name | Version |\n|------|---------|\n| \u003ca name=\"provider_aws\"\u003e\u003c/a\u003e [aws](#provider\\_aws) | \u003e= 3 |\n\n## Modules\n\nNo modules.\n\n## Resources\n\n| Name | Type |\n|------|------|\n| [aws_sns_topic_subscription.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/sns_topic_subscription) | resource |\n\n## Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|------|---------|:--------:|\n| \u003ca name=\"input_sns_topic_subscriptions\"\u003e\u003c/a\u003e [sns\\_topic\\_subscriptions](#input\\_sns\\_topic\\_subscriptions) | SNS Subscriptions | \u003cpre\u003elist(object({\u003cbr\u003e    name                   = string\u003cbr\u003e    topic_arn              = string\u003cbr\u003e    protocol               = string\u003cbr\u003e    endpoint               = string\u003cbr\u003e    endpoint_auto_confirms = bool\u003cbr\u003e    raw_message_delivery   = bool\u003cbr\u003e    filter_policy          = string\u003cbr\u003e    redrive_policy         = optional(string)\u003cbr\u003e  }))\u003c/pre\u003e | `[]` | no |\n\n## Outputs\n\nNo outputs.\n\n\u003c!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --\u003e\n\n\n## License\n\n[MIT](LICENSE)\n\nCopyright (c) 2021 [Flaconi GmbH](https://github.com/Flaconi)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflaconi%2Fterraform-aws-sns-topic-subscriptions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflaconi%2Fterraform-aws-sns-topic-subscriptions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflaconi%2Fterraform-aws-sns-topic-subscriptions/lists"}