Skip to content

Commit 5e6f6e9

Browse files
authored
[NDR-75] adding wildcard and github-actions to dependabot yml (#360)
1 parent 7c753af commit 5e6f6e9

File tree

2 files changed

+15
-29
lines changed

2 files changed

+15
-29
lines changed

.github/dependabot.yml

Lines changed: 13 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,30 @@
11
version: 2
22
updates:
3-
- package-ecosystem: 'npm'
4-
directory: '/'
3+
- package-ecosystem: "npm"
4+
directory: "/"
55
schedule:
66
interval: "weekly"
77
timezone: "Europe/London"
88
time: "09:00"
99
open-pull-requests-limit: 100
10+
1011
- package-ecosystem: "terraform"
11-
directory: "/infrastructure"
12+
directories:
13+
- "/infrastructure"
14+
- "/infrastructure/modules/*"
15+
- "/bootstrap"
16+
- "/virusscanner/terraform"
17+
- "/backup-vault/teraform"
1218
schedule:
1319
interval: "weekly"
1420
timezone: "Europe/London"
1521
time: "09:00"
1622
open-pull-requests-limit: 100
17-
- package-ecosystem: "terraform"
18-
directory: "/infrastructure/modules/lambda_edge"
19-
schedule:
20-
interval: "weekly"
21-
timezone: "Europe/London"
22-
time: "09:00"
23-
open-pull-requests-limit: 100
24-
- package-ecosystem: "terraform"
25-
directory: "/bootstrap"
26-
schedule:
27-
interval: "weekly"
28-
timezone: "Europe/London"
29-
time: "09:00"
30-
open-pull-requests-limit: 100
31-
- package-ecosystem: "terraform"
32-
directory: "/virusscanner/terraform"
33-
schedule:
34-
interval: "weekly"
35-
timezone: "Europe/London"
36-
time: "09:00"
37-
open-pull-requests-limit: 100
38-
- package-ecosystem: "terraform"
39-
directory: "/backup-vault/teraform"
23+
24+
- package-ecosystem: "github-actions"
25+
directory: "/"
4026
schedule:
4127
interval: "weekly"
4228
timezone: "Europe/London"
4329
time: "09:00"
44-
open-pull-requests-limit: 100
30+
open-pull-requests-limit: 20

infrastructure/modules/lambda/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ module "lambda" {
9191

9292
| Name | Description | Type | Default | Required |
9393
|------|-------------|------|---------|:--------:|
94-
| <a name="input_api_execution_arn"></a> [api\_execution\_arn](#input\_api\_execution\_arn) | Execution ARN of the API Gateway used for granting invoke permissions. | `string` | n/a | yes |
94+
| <a name="input_api_execution_arn"></a> [api\_execution\_arn](#input\_api\_execution\_arn) | Execution ARN of the API Gateway used for granting invoke permissions. | `string` | `""` | no |
9595
| <a name="input_default_policies"></a> [default\_policies](#input\_default\_policies) | List of default IAM policy ARNs to attach to the Lambda execution role. | `list(string)` | <pre>[<br/> "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole",<br/> "arn:aws:iam::aws:policy/CloudWatchLambdaInsightsExecutionRolePolicy"<br/>]</pre> | no |
9696
| <a name="input_handler"></a> [handler](#input\_handler) | Function entry point in the codebase (e.g., 'index.handler'). | `string` | n/a | yes |
9797
| <a name="input_http_methods"></a> [http\_methods](#input\_http\_methods) | List of HTTP methods to integrate with the Lambda function. | `list(string)` | `[]` | no |
@@ -105,7 +105,7 @@ module "lambda" {
105105
| <a name="input_name"></a> [name](#input\_name) | Unique name for the Lambda function. | `string` | n/a | yes |
106106
| <a name="input_reserved_concurrent_executions"></a> [reserved\_concurrent\_executions](#input\_reserved\_concurrent\_executions) | The number of concurrent execution allowed for lambda. A value of 0 will stop lambda from running, and -1 removes any concurrency limitations. Default to -1. | `number` | `-1` | no |
107107
| <a name="input_resource_id"></a> [resource\_id](#input\_resource\_id) | ID of the API Gateway resource (path) to attach Lambda to. | `string` | `""` | no |
108-
| <a name="input_rest_api_id"></a> [rest\_api\_id](#input\_rest\_api\_id) | ID of the associated API Gateway REST API. | `string` | n/a | yes |
108+
| <a name="input_rest_api_id"></a> [rest\_api\_id](#input\_rest\_api\_id) | ID of the associated API Gateway REST API. | `string` | `""` | no |
109109
## Outputs
110110

111111
| Name | Description |

0 commit comments

Comments
 (0)