forked from awslabs/aws-config-rdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
49 lines (49 loc) · 1.64 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
site_name: AWS RDK Documentation
theme:
name: material
palette:
scheme: default
primary: navy
plugins:
- search
# TODO: Enable this if/when docstrings are expanded in the core rdk module.
# - mkdocstrings:
# handlers:
# python:
# paths: [rdk]
markdown_extensions:
- markdown_include.include:
base_path: .
docs_dir: docs
nav:
- 'index.md'
- 'Rule Management':
- 'Creating Rules': 'rule-management/creating-rules.md'
- 'Deploying Rules': 'rule-management/deploy-rules.md'
- 'Modifying Rules': 'rule-management/modifying-rules.md'
- 'RDK Lambda Function':
- 'Lambda Function Logic': 'rule-management/rdk-lambda-function/lambda-function-logic.md'
- 'Writing an evaluate_compliance function': 'rule-management/rdk-lambda-function/writing-an-evaluate_compliance-function.md'
- 'Non-Compliant Resource Remediation': 'remediation.md'
- 'Advanced Features':
- 'advanced-features/cross-Account-deployments.md'
- 'advanced-features/custom-lambda-name.md'
- 'advanced-features/disable-resource-check.md'
- 'advanced-features/generate-lambda-layer.md'
- 'advanced-features/managed-rules.md'
- 'advanced-features/multi-region-deployment.md'
- 'advanced-features/rulesets.md'
- 'Commands':
- 'commands/clean.md'
- 'commands/create-rule-template.md'
- 'commands/create.md'
- 'commands/deploy.md'
- 'commands/export.md'
- 'commands/init.md'
- 'commands/logs.md'
- 'commands/modify.md'
- 'commands/rulesets.md'
- 'commands/sample-ci.md'
- 'commands/test-local.md'
- 'commands/undeploy.md'
- 'Legacy RDK Documentation': 'legacy-docs.md'