-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
133 lines (126 loc) · 4.58 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
site_name: GCP Nuke
site_url: https://ekristen.github.io/gcp-nuke
site_author: Erik Kristensen
site_description: >-
GCP Nuke is a tool to clean up your GCP project by nuking (deleting) all resources within it.
repo_name: ekristen/gcp-nuke
repo_url: https://github.com/ekristen/gcp-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
- Quick Start: quick-start.md
- Features:
- Overview: features/overview.md
- Global Filters: features/global-filters.md
- All Regions: features/all-regions.md
- Signed Binaries: features/signed-binaries.md
- CLI:
- Usage: cli-usage.md
- Options: cli-options.md
- Experimental: cli-experimental.md
- Config:
- Overview: config.md
- Filtering: config-filtering.md
- Presets: config-presets.md
- Development:
- Overview: development.md
- Contributing: contributing.md
- Standards: standards.md
- Resources: resources.md
- Releases: releases.md
- Testing: testing.md
- Resources:
- Big Query Dataset: resources/big-query-dataset.md
- Cloud Function: resources/cloud-function.md
- Cloud Function 2: resources/cloud-function-2.md
- Cloud Run: resources/cloud-run.md
- Cloud SQL Instance: resources/cloud-sql-instance.md
- Compute Backend Service: resources/compute-backend-service.md
- Compute Common Instance Metadata: resources/compute-common-instance-metadata.md
- Compute Disk: resources/compute-disk.md
- Compute Firewall: resources/compute-firewall.md
- Compute Forwarding Rule: resources/compute-forwarding-rule.md
- Compute Instance: resources/compute-instance.md
- Compute Packet Mirroring: resources/compute-packet-mirroring.md
- Compute SSL Certificate: resources/compute-ssl-certificate.md
- Compute Security Policy: resources/compute-security-policy.md
- Compute Target HTTP Proxy: resources/compute-target-http-proxy.md
- Compute Target HTTPS Proxy: resources/compute-target-https-proxy.md
- Compute URL Map: resources/compute-url-map.md
- DNS Managed Zone: resources/dns-managed-zone.md
- Firebase Auth Provider: resources/firebase-auth-provider.md
- Firebase OAuth Provider: resources/firebase-oauth-provider.md
- Firebase Realtime Database: resources/firebase-realtime-database.md
- Firebase Web App: resources/firebase-web-app.md
- Firestore Database: resources/firestore-database.md
- GKE Cluster: resources/gke-cluster.md
- IAM Policy Binding: resources/iam-policy-binding.md
- IAM Role: resources/iam-role.md
- IAM Service Account: resources/iam-service-account.md
- IAM Service Account Key: resources/iam-service-account-key.md
- IAM Workload Identity Pool: resources/iam-workload-identity-pool.md
- IAM Workload Identity Pool Provider: resources/iam-workload-identity-pool-provider.md
- KMS Key: resources/kms-key.md
- Secret Manager Secret: resources/secret-manager-secret.md
- Storage Bucket: resources/storage-bucket.md
- Storage Bucket Object: resources/storage-bucket-object.md
- VPC Global IP Address: resources/vpc-global-ip-address.md
- VPC IP Address: resources/vpc-ip-address.md
- VPC Network: resources/vpc-network.md
- VPC Route: resources/vpc-route.md
- VPC Router: resources/vpc-router.md
- VPC Subnet: resources/vpc-subnet.md