Skip to content

Commit

Permalink
Merge pull request #47 from companieshouse/feature/chs-user-services
Browse files Browse the repository at this point in the history
Add log groups, streams, and load balancer listener for Tuxedo CHS services
  • Loading branch information
marcransome authored Dec 14, 2021
2 parents 3f2ad26 + c49e08e commit 7e85aa8
Showing 1 changed file with 21 additions and 6 deletions.
27 changes: 21 additions & 6 deletions groups/frontend/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,9 @@ variable "tuxedo_ngsrv_logs" {
{ name: "ref" },
{ name: "num" }
]
chs = [
{ name: "auth" }
]
}
}

Expand Down Expand Up @@ -202,6 +205,12 @@ variable "tuxedo_service_logs" {
{ name: "ES" },
{ name: "Sys" }
]
chs = [
{ name: "CHG" },
{ name: "BE" },
{ name: "DBG" },
{ name: "Sys" }
]
}
}

Expand All @@ -224,6 +233,9 @@ variable "tuxedo_user_logs" {
wck = [
{ name: "ULOG" }
]
chs = [
{ name: "ULOG" }
]
}
}

Expand All @@ -233,22 +245,22 @@ variable "tuxedo_services" {
default = {
ceu = {
ois = 5000,
search = 5001,
search = 5001
},
chd = {
ois = 4000,
search = 4001,
chips = 4002,
chips = 4002
},
ewf = {
ois = 2000,
search = 2001,
chips = 2002,
ef = 2003,
ixbrl = 2004
ixbrl = 2004,
tnep = 2005,
trans = 2006,
gen = 2007,
gen = 2007
},
xml = {
ois = 3000,
Expand All @@ -258,15 +270,18 @@ variable "tuxedo_services" {
ixbrl = 3004
tnep = 3005,
trans = 3006,
gen = 3007,
gen = 3007
},
wck = {
chd = 6000,
img = 6001,
orc = 6002,
ehs = 6003,
ref = 6004,
num = 6005,
num = 6005
}
chs = {
auth = 7000
}
}
}
Expand Down

0 comments on commit 7e85aa8

Please sign in to comment.