kestra_namespace

kestra_namespace (Data Source)

Use this data source to access information about an existing Kestra Namespace.

Example usage

hcl
data "kestra_namespace" "example" {
  namespace_id = "company.team"
}

Schema

Required

  • namespace_id (String) The namespace.

Read-Only

  • allowed_namespaces (List of Object) The allowed namespaces. (see below for nested schema)
  • description (String) The namespace friendly description.
  • id (String) The ID of this resource.
  • outputs_in_internal_storage (Boolean) Whether outputs are stored in internal storage.
  • plugin_defaults (String) The namespace plugin defaults.
  • secret_configuration (Map of String) The secret configuration.
  • secret_isolation (List of Object) Secret isolation configuration (same shape as storage_isolation). (see below for nested schema)
  • secret_read_only (Boolean) Whether secrets are read-only in this namespace.
  • secret_type (String) The secret type.
  • storage_configuration (Map of String) The storage configuration.
  • storage_isolation (List of Object) Storage isolation configuration. (see below for nested schema)
  • storage_type (String) The storage type.
  • tenant_id (String) The tenant id.
  • variables (String) The namespace variables.
  • worker_group (List of Object) The worker group. (see below for nested schema)

Nested schema for allowed_namespaces

Read-Only:

  • namespace (String)

Nested schema for secret_isolation

Read-Only:

  • denied_services (List of String)
  • enabled (Boolean)

Nested schema for storage_isolation

Read-Only:

  • denied_services (List of String)
  • enabled (Boolean)

Nested schema for worker_group

Read-Only:

  • fallback (String)
  • key (String)

Was this page helpful?