Skip to content

Commit 4815c1d

Browse files
committed
init
1 parent e01e798 commit 4815c1d

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

e2e/test_sqs_dlq.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from botocore.exceptions import ClientError # Handle potential errors
88

99

10-
@unittest.skip("This test is skipped because it requires a live SQS connection.")
1110
class TestSQS(unittest.TestCase):
1211

1312
def setUp(self):

infra/mesh.tf

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# terraform {
2+
# required_providers {
3+
# aws = {
4+
# source = "hashicorp/aws"
5+
# version = "~> 6"
6+
# }
7+
# }
8+
# backend "s3" {
9+
# region = "eu-west-2"
10+
# key = "state"
11+
# }
12+
# required_version = ">= 1.5.0"
13+
# }
14+
15+
16+
17+
# data "aws_vpc" "default" {
18+
# default = true
19+
# }
20+
# data "aws_subnets" "default" {
21+
# filter {
22+
# name = "vpc-id"
23+
# values = [data.aws_vpc.default.id]
24+
# }
25+
# }
26+
27+
module "mesh" {
28+
source = "git::https://github.com/nhsdigital/terraform-aws-mesh-client.git//module?ref=v2.1.5"
29+
30+
name_prefix = "local-immunisation"
31+
mesh_env = "integration"
32+
subnet_ids = data.aws_subnets.default.ids
33+
34+
mailbox_ids = ["X26OT303"]
35+
verify_ssl = "true"
36+
get_message_max_concurrency = 10
37+
compress_threshold = 1 * 1024 * 1024
38+
handshake_schedule = "rate(24 hours)"
39+
40+
account_id = 345594581768
41+
}

0 commit comments

Comments
 (0)