forked from gerardokaztro/cloudsec-ninja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
135 lines (134 loc) · 3.89 KB
/
sidebars.js
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docs: [
{
type: 'category',
label: '🙋♂️ Bienvenida',
collapsible: false,
link: {
type: 'doc',
id: 'bienvenida/index',
},
items: [
'bienvenida/valores-y-objetivos',
'bienvenida/autor',
'bienvenida/coautores',
'bienvenida/ruta-de-aprendizaje',
'bienvenida/como-ser-parte',
'bienvenida/comunidad'
],
},
{
type: 'category',
label: '🤓 Fundamentos de TI',
link: {
slug: '/fundamentos-de-tecnologia',
type: 'generated-index',
title: 'Fundamentos de tecnologías',
description:
"Échale un vistazo a este módulo si crees no tener las bases necesarias en el mundo techie.",
},
items: [
'fundamentos-de-tecnologia/redes',
// 'fundamentos-de-tecnologia/contenedores',
'fundamentos-de-tecnologia/serverless',
'fundamentos-de-tecnologia/devops',
{
type: 'category',
label: 'Infraestructura como Código',
link: {
type: 'doc',
id: 'fundamentos-de-tecnologia/iac',
},
items: [
'fundamentos-de-tecnologia/terraform',
],
},
],
},
{
type: 'category',
label: '☁️ Computación en la nube',
link: {
slug: '/fundamentos-de-nube',
type: 'generated-index',
title: 'Fundamentos de Computación en la nube',
description:
"Échale un vistazo a este módulo si crees no tener las bases necesarias en el mundo cloud.",
},
items: [
'fundamentos-de-nube/introduccion',
'fundamentos-de-nube/aws',
],
},
{
type: 'category',
label: '🔒 Ciberseguridad',
link: {
slug: '/fundamentos-de-ciberseguridad',
type: 'generated-index',
title: 'Fundamentos de Ciberseguridad',
description:
"Échale un vistazo a este módulo si crees no tener las bases necesarias en el mundo cyber.",
},
items: [
'fundamentos-de-ciberseguridad/introduccion',
'fundamentos-de-ciberseguridad/ethical-hacking',
{
type: 'category',
label: 'Metodologías y Frameworks',
link: {
type: 'doc',
id: 'fundamentos-de-ciberseguridad/metodologias/metodologias-y-frameworks',
},
items: [
'fundamentos-de-ciberseguridad/metodologias/mitre',
'fundamentos-de-ciberseguridad/metodologias/nist',
'fundamentos-de-ciberseguridad/metodologias/zerotrust',
'fundamentos-de-ciberseguridad/metodologias/principio-del-minimo-privilegio',
],
},
],
},
{
type: 'category',
label:'🔐 Seguridad DE la nube',
link: {
slug: '/fundamentos-de-seguridad-aws',
type: 'generated-index',
title: 'Seguridad de la nube de AWS',
description:
"En este modulo conocerás los aspectos de seguridad DE la nube",
},
items: [
'fundamentos-de-seguridad-aws/responsabilidad-compartida',
'fundamentos-de-seguridad-aws/programas-de-cumplimiento',
'fundamentos-de-seguridad-aws/well-architected-sec',
],
},
// {
// type: 'category',
// label: '👩⚖️ Estructuras Multi-Cuenta',
// link: {
// slug: '/estructuras-multi-cuentas',
// type: 'generated-index',
// title: 'Estructura de múltiples cuentas en AWS',
// description:
// "Lorem.",
// },
// items: [
// 'gobierno/aws-organizations',
// 'gobierno/aws-control-tower',
// ],
// },
{
type: 'doc',
id: 'sponsors',
},
{
type: 'doc',
id: 'faq',
},
]
};
module.exports = sidebars;