Skip to content

Commit

Permalink
fix: hotfix update rmq version
Browse files Browse the repository at this point in the history
  • Loading branch information
preethamr committed Oct 7, 2024
1 parent 2ba6737 commit 6de956b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ops/modules/amq/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ resource "aws_mq_broker" "default" {
broker_name = "rmq-cluster-${var.environment}-${var.stage}"
deployment_mode = var.deployment_mode
engine_type = "RabbitMQ"
engine_version = "3.9.13"
engine_version = "3.10.25"
host_instance_type = var.host_instance_type
publicly_accessible = var.publicly_accessible
subnet_ids = var.publicly_accessible ? [] : var.subnet_ids
Expand All @@ -28,6 +28,9 @@ resource "aws_mq_broker" "default" {
username = var.rmq_mgt_user
password = var.rmq_mgt_password
}

auto_minor_version_upgrade = false
apply_immediately = true
}


Expand Down

0 comments on commit 6de956b

Please sign in to comment.