forked from infra/otc-metadata-rework
f21fd2ebce
Security Services Anti-DDoS Cloud Firewall Database Security Service Host Security Service Identity and Access Management Key Management Service Web Application Firewall Dedicated Web Application Firewall Reviewed-on: infra/otc-metadata-rework#92 Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com> Co-authored-by: Belejkanic, Lukas <lukas.belejkanic@t-systems.com> Co-committed-by: Belejkanic, Lukas <lukas.belejkanic@t-systems.com>
📁 services/
This folder contains metadata files that describe individual cloud services. Each file defines a single service and its configuration across environments.
🔧 Example: ecs.yaml
---
service_category: compute
service_title: Elastic Cloud Server
service_type: ecs
service_uri: elastic-cloud-server
jira_component: ECS
teams:
- name: docs-compute-rw
permission: write
cloud_environments:
- name: eu_de
visibility: public
- name: swiss
visibility: public
is_global: falseParameter Reference
| Parameter | Type | Description |
|---|---|---|
is_global |
boolean | Indicates whether the service is available globally (true/false). |
service_category |
string | Category reference, defined in service_categories/. |
service_title |
string | Display name of the service. |
service_type |
string | Unique identifier used across all metadata. |
service_uri |
string | URI component used in documentation links. |
jira_component |
string | Component name registered in JIRA (Capital letters). |
cloud_environments |
list | List of cloud regions and their visibility settings. |
teams |
list | Contributor teams with write or read access. |
cloud_environments Options:
| Field | Type | Allowed Values | Description |
|---|---|---|---|
name |
string | e.g., eu_de, swiss |
Name of the cloud region. |
visibility |
string | public, internal, hidden |
Controls visibility of the service. |
teams Options:
| Field | Type | Allowed Values | Description |
|---|---|---|---|
name |
string | team identifier | Name of the team (e.g., docs-compute-rw). |
permission |
string | read, write |
Access level to the metadata. |