forked from infracost/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.js
77 lines (77 loc) · 1.69 KB
/
sidebars.js
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
module.exports = {
someSidebar: [
{
type: 'doc',
id: 'getting_started',
},
{
type: 'category',
label: 'Integrations',
collapsed: false,
items: [
'integrations/github_actions',
'integrations/gitlab_ci',
'integrations/atlantis',
'integrations/terraform_cloud_enterprise',
'integrations/cicd',
'integrations/environment_variables',
'integrations/infracost_api',
],
},
{
type: 'category',
label: 'Features',
collapsed: false,
items: [
'features/cli_commands',
'features/config_file',
'features/usage_based_resources',
'features/share_links',
'features/cost_policies',
'features/terragrunt',
],
},
{
type: 'category',
label: 'Supported clouds',
collapsed: true,
items: [
`supported_resources/overview`,
'supported_resources/aws',
'supported_resources/azure',
'supported_resources/google',
],
},
{
type: 'category',
label: 'Cloud Pricing API',
collapsed: true,
items: [
'cloud_pricing_api/api_usage',
'cloud_pricing_api/self_hosted',
],
},
{
type: 'category',
label: 'Guides',
collapsed: true,
items: [
'guides/actions_migration',
'guides/gitlab_ci_migration',
'guides/azure_devops_migration',
'guides/v0.8_migration',
'guides/v0.9_migration',
`guides/advanced_usage`,
'guides/terraform_modules',
],
},
{
type: 'doc',
id: 'faq',
},
{
type: 'doc',
id: 'troubleshooting',
},
]
};