https://github.com/maroux/terraform-aws-hedwig-queue-subscription
https://github.com/maroux/terraform-aws-hedwig-queue-subscription
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/maroux/terraform-aws-hedwig-queue-subscription
- Owner: maroux
- License: apache-2.0
- Created: 2018-04-26T23:40:37.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-15T21:20:36.000Z (about 8 years ago)
- Last Synced: 2025-03-28T18:50:51.259Z (about 1 year ago)
- Language: HCL
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Hedwig Queue App Subscription Terraform module
==============================================
[Hedwig](https://github.com/Automatic/hedwig) is a inter-service communication bus that works on AWS SQS/SNS, while keeping things pretty simple and
straight forward. It uses [json schema](http://json-schema.org/) draft v4 for schema validation so all incoming
and outgoing messages are validated against pre-defined schema.
This module provides a custom [Terraform](https://www.terraform.io/) modules for deploying Hedwig infrastructure that
creates Hedwig subscriptions for Hedwig consumer apps.
## Usage
```hcl
module "topic-dev-user-updated-v1" {
source = "Automatic/hedwig-topic/aws"
topic = "dev-user-updated-v1"
}
module "consumer-dev-app" {
source = "Automatic/hedwig-queue/aws"
topic = "dev-myapp"
}
module "sub-dev-myapp-dev-user-updated" {
source = "Automatic/hedwig-queue-subscription/aws"
queue = "${module.consumer-dev-app.queue_arn}"
topic = "${module.topic-dev-user-updated-v1.arn}"
}
```
## Release Notes
[Github Releases](https://github.com/Automatic/terraform-aws-hedwig-queue-subscription/releases)
## How to publish
Go to [Terraform Registry](https://registry.terraform.io/modules/Automatic/hedwig-queue-subscription/aws), and
Resync module.