Skip to content

Commit

Permalink
Merge pull request #443 from ministryofjustice/bug/fix-regex-in-alb-logs
Browse files Browse the repository at this point in the history
updated regex for alb logs
  • Loading branch information
Khatraf authored Jun 14, 2024
2 parents c71d2f9 + 0893dca commit 22c0fcb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ resource "aws_glue_catalog_table" "application_lb_logs" {
}
columns {
name = "target_status_code"
type = "int"
type = "string"
}
columns {
name = "received_bytes"
Expand Down Expand Up @@ -475,7 +475,7 @@ resource "aws_glue_catalog_table" "application_lb_logs" {
type = "string"
}
columns {
name = "trace_header"
name = "trace_id"
type = "string"
}
columns {
Expand All @@ -488,7 +488,7 @@ resource "aws_glue_catalog_table" "application_lb_logs" {
}
columns {
name = "matched_rule_priority"
type = "int"
type = "string"
}
columns {
name = "request_creation_time"
Expand Down Expand Up @@ -523,7 +523,7 @@ resource "aws_glue_catalog_table" "application_lb_logs" {
type = "string"
}
columns {
name = "trace_id"
name = "conn_trace_id"
type = "string"
}
}
Expand Down

0 comments on commit 22c0fcb

Please sign in to comment.