kestra_namespace Data Source: Read Namespaces via Terraform
For the complete documentation index, see llms.txt. For a full content snapshot, see llms-full.txt. Append.mdto anykestra.io/docs/*URL for plain Markdown.
Terraform Data Source: kestra_namespace
Use this data source to access information about an existing Kestra Namespace.
Some attributes are only available on the Enterprise Edition
Example usage
data "kestra_namespace" "example" { namespace_id = "company.team"}Schema
Required
namespace_id(String) The namespace id.
Read-Only
allowed_namespaces(List of Object) The allowed namespaces. (see below for nested schema)concurrency(List of Object) The concurrency limit applied to the executions of every flow of the namespace and its descendants:limitandbehavior. (see below for nested schema)default_worker_selector(List of Object) The default routing applied to every task of the namespace that does not define its own:tags,matchandfallback. (see below for nested schema)description(String) The namespace description.id(String) The namespace id.outputs_in_internal_storage(Boolean) Whether the task outputs are stored in the internal storage.quotas(List of Object) The quotas evaluated before an execution starts:duration,limitandbehavior. (see below for nested schema)secret_configuration(Dynamic) The namespace secret configuration.secret_isolation(List of Object) Secret isolation configuration:enabledanddenied_services. (see below for nested schema)secret_read_only(Boolean) Whether the namespace secret manager is read only.secret_type(String) The namespace secret type.storage_configuration(Map of String) The namespace storage configuration.storage_isolation(List of Object) Storage isolation configuration:enabledanddenied_services. (see below for nested schema)storage_type(String) The namespace storage type.tenant_id(String) The tenant id.variables(String) The namespace variables, as YAML.
Nested Schema for allowed_namespaces
Read-Only:
namespace(String)
Nested Schema for concurrency
Read-Only:
behavior(String)limit(Number)
Nested Schema for default_worker_selector
Read-Only:
fallback(String)match(String)tags(Set of String)
Nested Schema for quotas
Read-Only:
behavior(String)duration(String)limit(Number)
Nested Schema for secret_isolation
Read-Only:
denied_services(Set of String)enabled(Boolean)
Nested Schema for storage_isolation
Read-Only:
denied_services(Set of String)enabled(Boolean)
Was this page helpful?