Skip to content

Commit

Permalink
fix(DMVP-5761): Update SNS module for support Budget policy
Browse files Browse the repository at this point in the history
  • Loading branch information
Julia Aghamyan committed Nov 12, 2024
1 parent 2e54923 commit c759d19
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions modules/cloudwatch-alarm-actions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ module "monitoring_cloudwatch_alarm_actions" {
| Name | Source | Version |
|------|--------|---------|
| <a name="module_dead_letter_queue"></a> [dead\_letter\_queue](#module\_dead\_letter\_queue) | dasmeta/modules/aws//modules/sqs | 1.5.1 |
| <a name="module_fallback-topic"></a> [fallback-topic](#module\_fallback-topic) | dasmeta/sns/aws//modules/topic | 1.1.1 |
| <a name="module_fallback-topic"></a> [fallback-topic](#module\_fallback-topic) | dasmeta/sns/aws//modules/topic | 1.2.5 |
| <a name="module_notify_jira"></a> [notify\_jira](#module\_notify\_jira) | ./modules/lambda-subscription | n/a |
| <a name="module_notify_servicenow"></a> [notify\_servicenow](#module\_notify\_servicenow) | ./modules/lambda-subscription | n/a |
| <a name="module_notify_slack"></a> [notify\_slack](#module\_notify\_slack) | terraform-aws-modules/notify-slack/aws | 5.4.1 |
| <a name="module_notify_teams"></a> [notify\_teams](#module\_notify\_teams) | ./modules/lambda-subscription | n/a |
| <a name="module_topic"></a> [topic](#module\_topic) | git::https://github.com/dasmeta/terraform-aws-sns.git//modules/topic | DMVP-5761 |
| <a name="module_topic"></a> [topic](#module\_topic) | dasmeta/sns/aws//modules/topic | 1.2.5 |

## Resources

Expand Down
8 changes: 4 additions & 4 deletions modules/cloudwatch-alarm-actions/main.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module "topic" {
# source = "dasmeta/sns/aws//modules/topic"
# version = "1.1.3"
source = "dasmeta/sns/aws//modules/topic"
version = "1.2.5"

source = "git::https://github.com/dasmeta/terraform-aws-sns.git//modules/topic?ref=DMVP-5761"
# source = "git::https://github.com/dasmeta/terraform-aws-sns.git//modules/topic?ref=DMVP-5761"

name = var.topic_name
create = var.create_topic
Expand All @@ -24,7 +24,7 @@ module "dead_letter_queue" {

module "fallback-topic" {
source = "dasmeta/sns/aws//modules/topic"
version = "1.1.1"
version = "1.2.5"

name = "fallback-${var.topic_name}"
delivery_policy = var.delivery_policy
Expand Down

0 comments on commit c759d19

Please sign in to comment.