Skip to content

Commit

Permalink
Merge pull request #1456 from alphagov/samsimpson1/amazonmq
Browse files Browse the repository at this point in the history
Prepare for app-publishing-amazonmq migration
  • Loading branch information
samsimpson1 authored Oct 3, 2024
2 parents 67bea9d + 18903ac commit fdef615
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ module "govuk-publishing-infrastructure-integration" {
"aws-credentials-integration",
"gcp-credentials-integration",
"common",
"common-integration"
"common-integration",
"amazonmq-integration"
]
}

Expand Down
15 changes: 15 additions & 0 deletions terraform/deployments/tfc-configuration/variables-integration.tf
Original file line number Diff line number Diff line change
Expand Up @@ -559,3 +559,18 @@ module "variable-set-rds-integration" {
}
}
}

module "variable-set-amazonmq-integration" {
source = "./variable-set"

name = "amazonmq-integration"
tfvars = {
amazonmq_engine_version = "3.11.28"
amazonmq_deployment_mode = "SINGLE_INSTANCE"
amazonmq_maintenance_window_start_day_of_week = "MONDAY"
amazonmq_maintenance_window_start_time_utc = "07:00"
amazonmq_host_instance_type = "mq.t3.micro"

amazonmq_govuk_chat_retry_message_ttl = 300000
}
}
10 changes: 10 additions & 0 deletions terraform/deployments/vpc/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,13 @@ output "rds_enhanced_monitoring_role_arn" {
description = "The ARN of the IAM role for RDS Enhanced Monitoring"
value = aws_iam_role.rds_enhanced_monitoring.arn
}

output "internal_root_zone_id" {
description = "ID of the internal Route53 DNS zone"
value = aws_route53_zone.internal_zone.id
}

output "external_root_zone_id" {
description = "ID of the external Route53 DNS zone"
value = aws_route53_zone.external_zone.id
}

0 comments on commit fdef615

Please sign in to comment.