Skip to content

Commit 5bcd83a

Browse files
authored
Merge pull request #13 from appvia/feat_trivy_security
feat: use trivy instead of tfsec
2 parents bf1a595 + e52d675 commit 5bcd83a

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.trivyignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
AVD-AWS-0067
2+
AVD-AWS-0057

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ module "account_baseline_alarms" {
8686
| Name | Description | Type | Default | Required |
8787
|------|-------------|------|---------|:--------:|
8888
| <a name="input_notification"></a> [notification](#input\_notification) | The configuration for how to send notifications. | <pre>object({<br> email = optional(object({<br> addresses = list(string)<br> }), null)<br> slack = optional(object({<br> channel = string<br> lambda_name = optional(string, "alarms-notifications")<br> webhook_url = string<br> }), null)<br> teams = optional(object({<br> webhook_url = string<br> }), null)<br> })</pre> | n/a | yes |
89-
| <a name="input_tags"></a> [tags](#input\_tags) | A map of tags to add to all resources. | `map(string)` | n/a | yes |
89+
| <a name="input_tags"></a> [tags](#input\_tags) | A map of tags to add to all resources | `map(string)` | n/a | yes |
9090
| <a name="input_alarm_namespace"></a> [alarm\_namespace](#input\_alarm\_namespace) | The cloudwatch alarm namespace. | `string` | `"cis-benchmark"` | no |
91-
| <a name="input_cloudtrail_log_group_name"></a> [cloudtrail\_log\_group\_name](#input\_cloudtrail\_log\_group\_name) | The name of the CloudTrail log group to filter on | `string` | `"aws-controltower/CloudTrailLogs"` | no |
91+
| <a name="input_cloudtrail_log_group_name"></a> [cloudtrail\_log\_group\_name](#input\_cloudtrail\_log\_group\_name) | The name of the CloudTrail log group to filter on. | `string` | `"aws-controltower/CloudTrailLogs"` | no |
9292
| <a name="input_create_sns_topic"></a> [create\_sns\_topic](#input\_create\_sns\_topic) | The boolean flag whether to create the SNS topic for alarms. | `bool` | `true` | no |
9393
| <a name="input_enable_administrator_sso_activity"></a> [enable\_administrator\_sso\_activity](#input\_enable\_administrator\_sso\_activity) | The boolean flag whether the administrator\_sso\_activity alarm is enabled or not. | `bool` | `true` | no |
9494
| <a name="input_enable_aws_config_changes"></a> [enable\_aws\_config\_changes](#input\_enable\_aws\_config\_changes) | The boolean flag whether the aws\_config\_changes alarm is enabled or not. | `bool` | `true` | no |

variables.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ variable "create_sns_topic" {
136136
}
137137

138138
variable "cloudtrail_log_group_name" {
139-
description = "The name of the CloudTrail log group to filter on"
139+
description = "The name of the CloudTrail log group to filter on."
140140
type = string
141141
default = "aws-controltower/CloudTrailLogs"
142142
}
@@ -148,6 +148,6 @@ variable "alarm_namespace" {
148148
}
149149

150150
variable "tags" {
151-
description = "A map of tags to add to all resources."
151+
description = "A map of tags to add to all resources"
152152
type = map(string)
153153
}

0 commit comments

Comments
 (0)