-
Notifications
You must be signed in to change notification settings - Fork 28
/
mkdocs.yml
67 lines (59 loc) · 1.93 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
# Project information
site_name: Protecting Workloads With AWS WAF, Amazon Inspector and AWS Systems Manager
site_description: This workshop shows how you can protect a web site using AWS Security Services
site_author: '[email protected]'
site_url: 'https://protecting-workloads.awssecworkshops.com/'
# Repository
repo_name: 'aws-samples/protecting-workloads-workshop'
repo_url: 'https://github.com/aws-samples/protecting-workloads-workshop'
# Copyright
copyright: '© 2019, 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: false
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:
- Scenario: 'index.md'
- Getting Started: 'getting-started.md'
- Perimeter Layer:
- 'Scenario': 'perimeter-layer/index.md'
- 'Build Phase': 'perimeter-layer/build.md'
- 'Assess Phase': 'perimeter-layer/assess.md'
- 'Remediate Phase': 'perimeter-layer/remediate.md'
- 'Verify Phase': 'perimeter-layer/verify.md'
- 'Cleanup Phase': 'perimeter-layer/cleanup.md'
- Host Layer:
- 'Scenario': 'host-layer/index.md'
- 'Build Phase': 'host-layer/build.md'
- 'Assess Phase': 'host-layer/assess.md'
- 'Remediate Phase': 'host-layer/remediate.md'
- 'Verify Phase': 'host-layer/verify.md'
- 'Cleanup Phase': 'host-layer/cleanup.md'
- Cleanup: 'cleanup.md'
- Contributing: 'contribute.md'
- License: 'license.md'