Skip to content

Commit

Permalink
test(e2e): Fix where max_page_size is defined
Browse files Browse the repository at this point in the history
  • Loading branch information
moduli committed Feb 8, 2024
1 parent be252e3 commit ba49cec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions enos/modules/aws_boundary/templates/controller.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ disable_mlock = true
controller {
name = "boundary-controller-${id}"
description = "Enos Boundary controller ${id}"

max_page_size = ${max_page_size}

database {
url = "postgresql://${dbuser}:${dbpass}@${dbhost}:${dbport}/${dbname}"
max_open_connections = ${db_max_open_connections}
Expand All @@ -20,8 +23,6 @@ listener "tcp" {
purpose = "api"
tls_disable = true

max_page_size = ${max_page_size}

# Uncomment to enable CORS for the Admin UI. Be sure to set the allowed origin(s)
# to appropriate values.
#cors_enabled = true
Expand Down
5 changes: 3 additions & 2 deletions enos/modules/aws_boundary/templates/controller_bsr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ disable_mlock = true
controller {
name = "boundary-controller-${id}"
description = "Enos Boundary controller ${id}"

max_page_size = ${max_page_size}

database {
url = "postgresql://${dbuser}:${dbpass}@${dbhost}:${dbport}/${dbname}"
max_open_connections = ${db_max_open_connections}
Expand All @@ -20,8 +23,6 @@ listener "tcp" {
purpose = "api"
tls_disable = true

max_page_size = ${max_page_size}

# Uncomment to enable CORS for the Admin UI. Be sure to set the allowed origin(s)
# to appropriate values.
#cors_enabled = true
Expand Down

0 comments on commit ba49cec

Please sign in to comment.