kestra_tenant Data Source: Read Tenants 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_tenant
Use this data source to access information about an existing Kestra Tenant.
This data source is only available on the Enterprise Edition
Example usage
data "kestra_tenant" "example" { tenant_id = "my-tenant"}Schema
Required
tenant_id(String) The tenant id.
Read-Only
concurrency(List of Object) The concurrency limit applied to the executions of every flow of the tenant:limitandbehavior. (see below for nested schema)default_worker_selector(List of Object) The default routing applied to every task of the tenant that does not define its own:tags,matchandfallback. (see below for nested schema)id(String) The tenant id.name(String) The tenant name.outputs_in_internal_storage(Boolean) Whether outputs are stored in internal storage.quotas(List of Object) The quotas evaluated before an execution starts:duration,limitandbehavior. (see below for nested schema)require_existing_namespace(Boolean) Whether tenant requires an existing namespace.secret_configuration(Map of String) The secret configuration.secret_isolation(List of Object) Secret isolation configuration:enabledanddenied_services. (see below for nested schema)secret_read_only(Boolean) Whether secrets are read-only in this tenant.secret_type(String) The secret type.storage_configuration(Map of String) The storage configuration.storage_isolation(List of Object) Storage isolation configuration:enabledanddenied_services. (see below for nested schema)storage_type(String) The storage type.
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?