Skip to content

Commit a5c5825

Browse files
committed
Fix capitalisation
1 parent 715b089 commit a5c5825

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
"**/Thumbs.db": true,
1111
".github": false,
1212
".vscode": false
13-
}
13+
},
14+
"typescript.tsdk": "node_modules/typescript/lib"
1415
}

infrastructure/terraform/components/api/module_lambda_post_mi.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module "post_mi" {
2222
function_code_base_path = local.aws_lambda_functions_dir_path
2323
function_code_dir = "api-handler/dist"
2424
function_include_common = true
25-
handler_function_name = "postMi"
25+
handler_function_name = "postMI"
2626
runtime = "nodejs22.x"
2727
memory = 128
2828
timeout = 5

infrastructure/terraform/components/api/resources/spec.tmpl.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@
169169
"/mi": {
170170
"post": {
171171
"description": "Provide management information.",
172-
"operationId": "postMi",
172+
"operationId": "postMI",
173173
"requestBody": {
174174
"required": true
175175
},

0 commit comments

Comments
 (0)