forked from cheedep/aws-security-workshops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
73 lines (66 loc) · 2.46 KB
/
mkdocs.yml
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
# Project information
site_name: Security Workshops
site_description: 'A collection of AWS Security related workshops'
site_author: '[email protected]'
site_url: 'https://awssecworkshops.com'
# Repository
repo_name: 'aws-samples/aws-security-workshops'
repo_url: 'https://github.com/aws-samples/aws-security-workshops'
# Copyright
copyright: '© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.'
# Configuration
theme:
name: 'material'
logo: 'assets/images/aws_smile_logo.png'
favicon: 'assets/images/aws-favicon.ico'
feature:
tabs: true
custom_dir: 'docs/theme'
# Customization
extra_css:
- 'stylesheets/custom.css'
extra_javascript:
- 'javascripts/extra.js'
extra:
social:
- type: 'home'
link: 'https://awssecworkshops.com'
- type: 'shield'
link: 'https://aws.amazon.com/security/'
- type: 'twitter'
link: 'https://twitter.com/awssecurityinfo?lang=en'
- type: 'rss'
link: 'https://aws.amazon.com/blogs/security/'
# Extensions
markdown_extensions:
- admonition
- codehilite
- pymdownx.details
# Navigation
nav:
- Home: 'index.md'
- Getting Started: 'getting-started.md'
- Builder Sessions:
- Directory: 'builder-sessions/index.md'
- Permission Boundaries:
- Build Phase: 'builder-sessions/permission-boundary/build.md'
- Verify Phase: 'builder-sessions/permission-boundary/verify.md'
- Workshops:
- 'Directory': 'workshops/index.md'
- 'Detection with Machine Learning': 'workshops/detection-ml/index.md'
- 'Identity Round Robin':
- 'Overview': 'workshops/identity-round-robin/index.md'
- 'Serverless Round':
- 'Scenario': 'workshops/identity-round-robin/serverless/index.md'
- 'Build Phase': 'workshops/identity-round-robin/serverless/build.md'
- 'Verify Phase': 'workshops/identity-round-robin/serverless/verify.md'
- 'Security Services Round':
- 'Scenario': 'workshops/identity-round-robin/ess/index.md'
- 'Build Phase': 'workshops/identity-round-robin/ess/build.md'
- 'Verify Phase': 'workshops/identity-round-robin/ess/verify.md'
- 'Permission Boundary Round':
- 'Scenario': 'workshops/identity-round-robin/permission-boundaries/index.md'
- 'Build Phase': 'workshops/identity-round-robin/permission-boundaries/build.md'
- 'Verify Phase': 'workshops/identity-round-robin/permission-boundaries/verify.md'
- Contributing: 'contribute.md'
- License: 'license.md'