Skip to content

Commit

Permalink
Merge pull request #29 from companieshouse/feature/add-ceu-chd-log-gr…
Browse files Browse the repository at this point in the history
…oups

Define CHD and CEU log groups
  • Loading branch information
marcransome authored Jun 21, 2021
2 parents c1ebe2a + b5bf944 commit 2956966
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions groups/frontend/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,15 @@ variable "tuxedo_ngsrv_logs" {
type = map(list(any))
description = "A map whose keys represent server-side tuxedo server groups with lists of objects representing nGsrv log files for each server group. Each object is expected to have at a minimum a 'name' key. A single log group will be created for each object. Optional 'log_retention_in_days' and 'kms_key_id' attributes can be set per-file to override the default values."
default = {
ceu = [
{ name: "ois" },
{ name: "search" }
]
chd = [
{ name: "ois" },
{ name: "search" },
{ name: "chips" }
]
ewf = [
{ name: "ois" },
{ name: "search" },
Expand Down Expand Up @@ -143,6 +152,19 @@ variable "tuxedo_service_logs" {
type = map(list(any))
description = "A map whose keys represent server-side tuxedo server groups with lists of objects representing user log files for each server group. Each object is expected to have at a minimum a 'name' key. Two CloudWatch log groups will be created for each object for standard output and standard error streams respectively. Optional 'log_retention_in_days' and 'kms_key_id' attributes can be set per-file to override the default values and will apply to both standard error and standard output log groups for that log."
default = {
ceu = [
{ name: "CHG" },
{ name: "DBG" },
{ name: "CS" },
{ name: "Sys" }
]
chd = [
{ name: "BE" },
{ name: "CHG" },
{ name: "DBG" },
{ name: "CS" },
{ name: "Sys" }
]
ewf = [
{ name: "CHG" },
{ name: "BE" },
Expand Down Expand Up @@ -171,6 +193,12 @@ variable "tuxedo_user_logs" {
type = map(list(any))
description = "A map whose keys represent server-side tuxedo server groups with lists of objects representing individual log files for each server group. Each object is expected to have at a minimum a 'name' key. A single CloudWatch log group will be created for each object. Optional 'log_retention_in_days' and 'kms_key_id' attributes can be set per-file to override the default values."
default = {
ceu = [
{ name: "ULOG" }
]
chd = [
{ name: "ULOG" }
]
ewf = [
{ name: "ULOG" }
]
Expand Down

0 comments on commit 2956966

Please sign in to comment.