steampipe plugin install francois2metz/baleen

Table: baleen_namespace

A namespace is a proxy with a configured origin and specific rules.

Examples

List namespaces

select
id,
name,
url
from
baleen_namespace;

Get namespaces with the WAF enabled

select
id,
name
from
baleen_namespace
where
waf_enabled;

Get namespaces with the header X-Frame-Options: deny no send

select
id,
name
from
baleen_namespace
where
not headers_deny_frame_options;

Schema for baleen_namespace

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
cdn_enabledbooleanCache enabled.
custom_404_pagebooleanUse custom 404 page.
custom_50x_pagebooleanUse custom 50x page.
headers_deny_frame_optionsbooleanAdd X-Frame-Options: deny http header.
headers_no_sniff_mime_typebooleanAdd X-Content-Type-Options: nosniff http header.
idtextUnique ID of the namespace.
nametextName of the namespace.
urltextURL of the origin.
waf_enabledbooleanWaf enabled.