-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
mkdocs.yml
110 lines (102 loc) · 2.86 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
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
site_name: AWS Nuke
site_url: https://ekristen.github.io/aws-nuke
site_author: Erik Kristensen
site_description: >-
AWS Nuke is a tool to clean up your AWS account by nuking (deleting) all resources within it.
repo_name: ekristen/aws-nuke
repo_url: https://github.com/ekristen/aws-nuke
copyright: Copyright © 2024 - Erik Kristensen
site_dir: public
# Configuration
theme:
name: material
language: en
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/link
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/toggle-switch-off
name: Switch to system preference
features:
- navigation.footer
- navigation.indexes
- navigation.path
- navigation.sections
- navigation.tabs
- toc.follow
- toc.integrate
- content.code.annotate
- content.code.copy
- content.tooltips
- search.highlight
- search.share
- search.suggest
# Plugins
plugins:
- search
# Extensions
markdown_extensions:
- admonition
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
# Page tree
nav:
- Getting Started:
- Overview: index.md
- Warning: warning.md
- Install: installation.md
- Authentication: auth.md
- Quick Start: quick-start.md
- Starter Config: starter-config.md
- Migration Guide: migration-guide.md
- Features:
- Overview: features/overview.md
- Bypass Alias Check: features/bypass-alias-check.md
- Global Filters: features/global-filters.md
- Filter Groups: features/filter-groups.md
- Enabled Regions: features/enabled-regions.md
- Signed Binaries: features/signed-binaries.md
- CLI:
- Usage: cli-usage.md
- Options: cli-options.md
- Shell Completion: cli-completion.md
- Experimental: cli-experimental.md
- Examples: cli-examples.md
- Config:
- Overview: config.md
- Filtering: config-filtering.md
- Presets: config-presets.md
- Custom Endpoints: config-custom-endpoints.md
- Migration Guide: config-migration.md
- Examples & Presets: config-contrib.md
- Resources:
- Overview: resources/overview.md
- Cognito User Pool: resources/cognito-user-pool.md
- EC2 Image: resources/ec2-image.md
- IAM Role: resources/iam-role.md
- S3 Bucket: resources/s3-bucket.md
- S3 Object: resources/s3-object.md
- Development:
- Overview: development.md
- Contributing: contributing.md
- Standards: standards.md
- Resources: resources.md
- Releases: releases.md
- Testing: testing.md