You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/enos/modules/docker_boundary/boundary-config-rate-limit.hcl

119 lines
2.2 KiB

# Copyright IBM Corp. 2020, 2025
# SPDX-License-Identifier: BUSL-1.1
disable_mlock = true
controller {
name = "docker-controller"
public_cluster_addr = "boundary:9201"
database {
url = "env://BOUNDARY_POSTGRES_URL"
}
api_rate_limit {
resources = ["*"]
actions = ["*"]
per = "total"
unlimited = true
}
api_rate_limit {
resources = ["*"]
actions = ["*"]
per = "ip-address"
unlimited = true
}
api_rate_limit {
resources = ["*"]
actions = ["*"]
per = "auth-token"
unlimited = true
}
api_rate_limit {
resources = ["host"]
actions = ["read"]
per = "auth-token"
limit = 3
period = "10s"
}
api_rate_limit_max_quotas = 1
}
worker {
name = "boundary-collocated-worker"
description = "A worker that runs alongside the controller in the same process"
tags {
type = ["${worker_type_tag}"]
}
}
listener "tcp" {
address = "0.0.0.0:9200"
purpose = "api"
tls_disable = true
}
listener "tcp" {
address = "0.0.0.0:9201"
purpose = "cluster"
tls_disable = true
}
listener "tcp" {
address = "0.0.0.0:9202"
purpose = "proxy"
tls_disable = true
}
listener "tcp" {
address = "0.0.0.0:9203"
purpose = "ops"
tls_disable = true
}
kms "aead" {
purpose = "root"
aead_type = "aes-gcm"
key = "sP1fnF5Xz85RrXyELHFeZg9Ad2qt4Z4bgNHVGtD6ung="
key_id = "global_root"
}
# This key_id needs to match the corresponding downstream worker's
# "worker-auth" kms
kms "aead" {
purpose = "worker-auth"
aead_type = "aes-gcm"
key = "OLFhJNbEb3umRjdhY15QKNEmNXokY1Iq"
key_id = "global_worker-auth"
}
kms "aead" {
purpose = "recovery"
aead_type = "aes-gcm"
key = "8fZBjCUfN0TzjEGLQldGY4+iE9AkOvCfjh7+p0GtRBQ="
key_id = "global_recovery"
}
events {
audit_enabled = true
observations_enabled = true
sysevents_enabled = true
sink "stderr" {
name = "all-events"
description = "All events sent to stderr"
event_types = ["*"]
format = "cloudevents-json"
deny_filters = [
"\"/data/request_info/method\" contains \"Status\"",
"\"/data/request_info/path\" contains \"/health\"",
]
}
}