Adjust vuln scans (#13214)

This commit is contained in:
Zachary Winnerman 2023-08-22 19:01:57 -04:00 committed by GitHub
parent dece8e179c
commit ec0ecf2915
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,7 +58,19 @@ resource "aws_cloudwatch_event_target" "ecs_scheduled_task" {
containerOverrides = [
{
name = "fleet",
command = ["vuln_processing"]
command = ["fleet", "vuln_processing"]
},
{
resourceRequirements = [
{
type = "VCPU",
value = "1"
},
{
type = "MEMORY",
value = "4096"
}
]
}
]
})