-
Notifications
You must be signed in to change notification settings - Fork 31
/
sidebars.js
86 lines (86 loc) · 2.07 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
78
79
80
81
82
83
84
85
86
module.exports = {
someSidebar: [
{
type: 'doc',
id: 'getting_started',
},
{
type: 'doc',
id: 'integrations/cicd',
},
{
type: 'category',
label: 'Open source features',
collapsed: false,
items: [
'features/cli_commands',
'features/usage_based_resources',
'features/config_file',
'features/vscode',
'features/terraform_modules',
'features/terragrunt',
'features/environment_variables',
],
},
{
type: 'category',
label: 'Infracost Cloud features',
collapsed: false,
items: [
'infracost_cloud/get_started',
'infracost_cloud/finops_policies',
'infracost_cloud/tagging_policies',
'infracost_cloud/guardrails',
'infracost_cloud/jira_integration',
'infracost_cloud/reports',
'infracost_cloud/data_export',
'infracost_cloud/api',
'infracost_cloud/sso',
'infracost_cloud/custom_price_books',
'infracost_cloud/readme_badge',
'infracost_cloud/key_concepts',
],
},
{
type: 'category',
label: 'Integrations',
collapsed: true,
items: [
'integrations/github_app',
'integrations/azure_repos_app',
'integrations/gitlab_app',
'integrations/cicd_integrations',
'integrations/slack',
'integrations/spacelift',
'integrations/terraform_cloud_enterprise',
'integrations/open_policy_agent',
'integrations/infracost_api',
'integrations/third_party_integrations',
],
},
{
type: 'category',
label: 'Supported clouds',
collapsed: true,
items: [
`supported_resources/overview`,
'supported_resources/aws',
'supported_resources/azure',
'supported_resources/google',
'supported_resources/cloud_pricing_api',
],
},
{
type: 'doc',
id: 'faq',
},
{
type: 'doc',
id: 'troubleshooting',
},
{
type: 'doc',
id: 'support',
},
]
};