This repository has been archived by the owner on Jul 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 369
/
primary-navigation.js
80 lines (80 loc) · 1.95 KB
/
primary-navigation.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
export default [
{
text: 'Overview',
url: '/',
},
{
text: 'Registry',
url: 'https://registry.terraform.io/',
},
{
text: 'Tutorials',
url: 'https://developer.hashicorp.com/terraform/tutorials',
},
{
text: 'Docs',
type: 'anchor',
submenu: [
{
url: 'https://developer.hashicorp.com/terraform/docs',
text: 'About the Docs',
},
{
url: 'https://developer.hashicorp.com/terraform/intro',
text: 'Intro to Terraform',
},
{
url: 'https://developer.hashicorp.com/terraform/language',
text: 'Configuration Language',
},
{
url: 'https://developer.hashicorp.com/terraform/cli',
text: 'Terraform CLI',
},
{
url: 'https://developer.hashicorp.com/terraform/cloud-docs/',
text: 'Terraform Cloud',
},
{
url: 'https://developer.hashicorp.com/terraform/enterprise',
text: 'Terraform Enterprise',
},
{
url: 'https://developer.hashicorp.com/terraform/language/providers',
text: 'Provider Use',
},
{
url: 'https://developer.hashicorp.com/terraform/plugin',
text: 'Plugin Development',
},
{
url: 'https://developer.hashicorp.com/terraform/registry',
text: 'Registry Publishing',
},
{
url: 'https://developer.hashicorp.com/terraform/docs/partnerships',
text: 'Integration Program',
},
{
url: 'https://developer.hashicorp.com/terraform/docs/terraform-tools',
text: 'Terraform Tools',
},
{
url: 'https://developer.hashicorp.com/terraform/cdktf',
text: 'CDK for Terraform',
},
{
url: 'https://developer.hashicorp.com/terraform/docs/glossary',
text: 'Glossary',
},
],
},
{
text: 'Community',
url: '/community',
},
{
text: 'GitHub',
url: 'https://github.com/hashicorp/terraform',
},
]