Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 39 additions & 38 deletions data/referenceable_fields/3.4.x.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
{
"acme": [
"config.account_email",
"config.eab_kid",
"config.eab_hmac_key",
"config.storage_config.redis.auth",
"config.storage_config.consul.token",
"config.storage_config.vault.token"
],
"aws-lambda": [
"config.aws_key",
"config.aws_secret",
"config.aws_assume_role_arn"
],
"azure-functions": [
"config.apikey",
"config.clientid"
],
"datadog": [
"config.host"
],
"forward-proxy": [
"config.auth_username",
"config.auth_password"
Expand All @@ -9,6 +29,10 @@
"config.redis.sentinel_username",
"config.redis.sentinel_password"
],
"http-log": [
"config.http_endpoint",
"config.headers"
],
"kafka-log": [
"config.authentication.user",
"config.authentication.password"
Expand All @@ -21,6 +45,9 @@
"config.ldap_password",
"config.bind_dn"
],
"loggly": [
"config.key"
],
"openid-connect": [
"config.client_id",
"config.client_secret",
Expand All @@ -38,12 +65,20 @@
"config.session_redis_username",
"config.session_redis_password"
],
"opentelemetry": [
"config.endpoint",
"config.headers"
],
"proxy-cache-advanced": [
"config.redis.username",
"config.redis.password",
"config.redis.sentinel_username",
"config.redis.sentinel_password"
],
"rate-limiting": [
"config.redis_password",
"config.redis_username"
],
"rate-limiting-advanced": [
"config.redis.username",
"config.redis.password",
Expand All @@ -64,6 +99,10 @@
"config.append.headers",
"config.append.querystring"
],
"response-ratelimiting": [
"config.redis_password",
"config.redis_username"
],
"saml": [
"config.idp_certificate",
"config.response_encryption_key",
Expand All @@ -73,44 +112,6 @@
"config.session_redis_username",
"config.session_redis_password"
],
"acme": [
"config.account_email",
"config.eab_kid",
"config.eab_hmac_key",
"config.storage_config.redis.auth",
"config.storage_config.consul.token",
"config.storage_config.vault.token"
],
"aws-lambda": [
"config.aws_key",
"config.aws_secret",
"config.aws_assume_role_arn"
],
"azure-functions": [
"config.apikey",
"config.clientid"
],
"datadog": [
"config.host"
],
"http-log": [
"config.http_endpoint",
"config.headers"
],
"loggly": [
"config.key"
],
"opentelemetry": [
"config.headers"
],
"rate-limiting": [
"config.redis_password",
"config.redis_username"
],
"response-ratelimiting": [
"config.redis_password",
"config.redis_username"
],
"session": [
"config.secret"
]
Expand Down
38 changes: 31 additions & 7 deletions schemas/acl/3.4.x.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,33 @@
{
"entity_checks": [
{
"only_one_of": [
"config.allow",
"config.deny"
]
},
{
"at_least_one_of": [
"config.allow",
"config.deny"
]
}
],
"fields": [
{
"consumer": {
"type": "foreign",
"description": "Custom type for representing a foreign key with a null value allowed.",
"eq": null,
"reference": "consumers",
"type": "foreign"
"reference": "consumers"
}
},
{
"consumer_group": {
"type": "foreign",
"description": "Custom type for representing a foreign key with a null value allowed.",
"eq": null,
"reference": "consumer_groups"
}
},
{
Expand All @@ -24,13 +47,13 @@
],
"type": "string"
},
"required": true,
"type": "set"
"type": "set",
"description": "A set of strings representing HTTP protocols.",
"required": true
}
},
{
"config": {
"required": true,
"fields": [
{
"allow": {
Expand All @@ -51,11 +74,12 @@
{
"hide_groups_header": {
"default": false,
"type": "boolean",
"required": true
"required": true,
"type": "boolean"
}
}
],
"required": true,
"type": "record"
}
}
Expand Down
Loading