Skip to content

Commit

Permalink
Merge pull request #1813 from alphagov/fastly-logs-column-order
Browse files Browse the repository at this point in the history
Move protocol column to the end of the list
  • Loading branch information
richardTowers authored Jan 10, 2024
2 parents 679b665 + 6b5ef6e commit 5364552
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions terraform/projects/infra-fastly-logs/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -247,11 +247,6 @@ resource "aws_glue_catalog_table" "govuk_www" {
type = "int"
comment = "HTTP status code returned"
}
columns {
name = "protocol"
type = "string"
comment = "HTTP version used"
}
columns {
name = "request_time"
type = "double"
Expand Down Expand Up @@ -309,6 +304,11 @@ resource "aws_glue_catalog_table" "govuk_www" {
name = "client_ja3"
type = "string"
}
columns {
name = "protocol"
type = "string"
comment = "HTTP version used"
}
}

// these correspond to directory ordering of:
Expand Down Expand Up @@ -441,11 +441,6 @@ resource "aws_glue_catalog_table" "govuk_assets" {
type = "int"
comment = "HTTP status code returned"
}
columns {
name = "protocol"
type = "string"
comment = "HTTP version used"
}
columns {
name = "request_time"
type = "double"
Expand Down Expand Up @@ -503,6 +498,11 @@ resource "aws_glue_catalog_table" "govuk_assets" {
name = "client_ja3"
type = "string"
}
columns {
name = "protocol"
type = "string"
comment = "HTTP version used"
}
}

// these correspond to directory ordering of:
Expand Down

0 comments on commit 5364552

Please sign in to comment.