File: flowchart_products.md

package info (click to toggle)
scap-security-guide 0.1.76-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 110,644 kB
  • sloc: xml: 241,883; sh: 73,777; python: 32,527; makefile: 27
file content (34 lines) | stat: -rw-r--r-- 1,767 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# content/products

This flowchart represents the high-level interaction of components under the `products` folder.

Note that colors are used to highlight components which interact with other folders under the `content` repository.

> ***NOTE***: Since the colors have only visual effects when presented in individual flowcharts, they are very useful when analyzing multiple flowcharts together.

<div class="mermaid" style="width=100%;">
flowchart TD
    subgraph products
    60[products] --> |identified by| 61[product_name]
        61[product_name] --> |defined at| 62[product.yml]
        61[product_properties] --> |defined at| 62[product.yml, product_properties/]
        61[product_name] --> |contains| 63[overlays]
        61[product_name] --> |contains| 64[profiles]
            64[profiles] --> |written at| 65[profile_name.profile]
                65[profile_name.profile] --> |refers to| 66([rules])
                65[profile_name.profile] --> |may override| 67[variables]
                65[profile_name.profile] --> |may use| 68[controls]
        61[product_name] --> |contains| 69[transforms]
        61[product_name] --> |may have| 70[kickstart]
        61[product_name] --> |may have| 71[checks]
            71[checks] --> |instructed using| 72([OVAL + XCCDF])
                72([OVAL + XCCDF]) --> |written at| 73[check_name.xml]
    end
    style 60 fill: #F0E68C,stroke:#333,stroke-width:4px
    style 64 fill: #F4A460,stroke:#333,stroke-width:4px
    style 66 fill: #FFD700,stroke:#333,stroke-width:4px
    style 67 fill: #FFA500,stroke:#333,stroke-width:4px
    style 72 fill: #D3D3D3,stroke:#333
    style 73 fill: #1E90FF,stroke:#333,stroke-width:4px
</div>
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>