kestra_tenant (Resource)

Manages a Kestra Tenant.

Example Usage

hcl
resource "kestra_tenant" "example" {
  tenant_id = "my-tenant"
  name      = "My Tenant"
}

Schema

Required

  • tenant_id (String) The tenant id.

Optional

  • name (String) The tenant name.

Read-Only

  • id (String) The ID of this resource.

Import

Import is supported using the following syntax:

shell
terraform import kestra_tenant.example {{tenant_id}}