-
Notifications
You must be signed in to change notification settings - Fork 3
VED-355 mesh terraform mailbox #643
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 10 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
70a161d
initial code
nhsdevws a8b773b
Merge branch 'master' into VED-355-Mesh-Terraform-Mailbox
nhsdevws 46b775c
wip
nhsdevws de71001
add s3 buckets to locals
nhsdevws b8e900c
bucket names & dev id
nhsdevws 455b3a6
TODO Marker
nhsdevws 27e6987
Merge branch 'master' into VED-355-Mesh-Terraform-Mailbox
nhsdevws 284e8f9
rename & tidy
nhsdevws a3db3e1
remove mesh_processor from terraform folder
nhsdevws 8afd7c2
tidy
nhsdevws 574c026
comments
nhsdevws 133a64d
Merge branch 'master' into VED-355-Mesh-Terraform-Mailbox
nhsdevws b8fa16c
tidy & delete mesh file
nhsdevws a603792
missing KMS
nhsdevws 50ebd3d
VED-355: Move mesh processor back to terraform folder as it depends o…
mfjarvis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| module "mesh" { | ||
| source = "git::https://github.com/nhsdigital/terraform-aws-mesh-client.git//module?ref=v2.1.5" | ||
|
|
||
| name_prefix = "local-immunisation" | ||
| mesh_env = "integration" | ||
mfjarvis marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| subnet_ids = data.aws_subnets.default.ids | ||
|
|
||
| # TODO single or many mailbox ids | ||
| mailbox_ids = [var.mesh_mailbox_id] | ||
| dlq_mailbox_id = var.mesh_dlq_mailbox_id | ||
| verify_ssl = "true" | ||
| get_message_max_concurrency = 10 | ||
| compress_threshold = 1 * 1024 * 1024 | ||
| handshake_schedule = "rate(24 hours)" | ||
|
|
||
| account_id = local.immunisation_account_id | ||
| # TODO these bucket names need attention - enviroment specific names to avoid conflicts | ||
| mesh_bucket_name = "imms-${var.environment}-mesh-data-sources" | ||
| mesh_logs_bucket_name = "imms-${var.environment}-mesh-s3logs" | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| module "mesh" { | ||
mfjarvis marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| source = "git::https://github.com/nhsdigital/terraform-aws-mesh-client.git//module?ref=v2.1.5" | ||
|
|
||
| name_prefix = "local-immunisation" | ||
| mesh_env = "integration" | ||
| subnet_ids = data.aws_subnets.default.ids | ||
|
|
||
| # TODO single or many mailbox ids | ||
| mailbox_ids = [local.mesh_mailbox_id] | ||
| dlq_mailbox_id = local.mesh_dlq_mailbox_id | ||
| verify_ssl = "true" | ||
| get_message_max_concurrency = 10 | ||
| compress_threshold = 1 * 1024 * 1024 | ||
| handshake_schedule = "rate(24 hours)" | ||
|
|
||
| account_id = local.immunisation_account_id | ||
| # TODO these bucket names need attention - enviroment specific names to avoid conflicts | ||
| mesh_bucket_name = "local-immunisation-mesh" | ||
| mesh_logs_bucket_name = "local-immunisation-mesh-s3logs" | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.