File tree Expand file tree Collapse file tree 2 files changed +41
-1
lines changed
Expand file tree Collapse file tree 2 files changed +41
-1
lines changed Original file line number Diff line number Diff line change 77from botocore .exceptions import ClientError # Handle potential errors
88
99
10- @unittest .skip ("This test is skipped because it requires a live SQS connection." )
1110class TestSQS (unittest .TestCase ):
1211
1312 def setUp (self ):
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments