Skip to content

Commit b0813ef

Browse files
authored
docs(multi-tenancy): add multi-tenancy under feature-flag
1 parent 8bb78cd commit b0813ef

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

docs/administration/multi-tenancy.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Multi-tenancy
22

3+
!!! tip "Under construction"
4+
5+
This feature is under development.
6+
7+
{% if "multi-tenancy" in (config.extra.feature_flags.enabled|string|lower|replace(" ", "")).split(",") %}
38
This page explains how to configure and manage multi-tenancy in OpenAEV, enabling multiple isolated workspaces on a single platform instance.
49

510
!!! tip "Enterprise Edition"
@@ -102,3 +107,4 @@ OPENAEV_PROVIDER_AZURE_TENANT_ID=<your-tenant-uuid>
102107
- [Enterprise Edition](enterprise.md) — Activate your EE license
103108
- [Authentication](../deployment/authentication.md) — Set up SSO providers for tenant mapping
104109
- [Hub](hub.md) — Manage platform-wide resources shared across tenants
110+
{% endif %}

docs/deployment/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ certificates in the folder are public PEM-armoured (*.pem), DER-encoded X509 cer
6969
| logging.logback.rollingpolicy.max-file-size | LOGGING_LOGBACK_ROLLINGPOLICY_MAX-FILE-SIZE | 10MB | Rolling max file size |
7070
| logging.logback.rollingpolicy.max-history | LOGGING_LOGBACK_ROLLINGPOLICY_MAX-HISTORY | 7 | Rolling max days |
7171

72-
{% if "audit-log" not in (config.extra.feature_flags.disabled|string|lower|replace(" ", "")).split(",") %}
72+
{% if "audit-log" in (config.extra.feature_flags.enabled|string|lower|replace(" ", "")).split(",") %}
7373
#### Audit Logging
7474

7575
Audit logging will allow you to have a trace of the actions performed using API calls.

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ extra_css:
3535
# Extra
3636
extra:
3737
feature_flags:
38-
disabled: !ENV [DOCS_FEATURE_FLAGS, "audit-log"]
38+
enabled: !ENV [DOCS_FEATURE_FLAGS] # enabled: !ENV [DOCS_FEATURE_FLAGS, "audit-log,multi-tenancy"]
3939
version:
4040
provider: mike
4141
analytics:

0 commit comments

Comments
 (0)