Skip to content

Commit da1e602

Browse files
author
Gaurav Madaan
committed
Updated notes AWs
1 parent 9476c6b commit da1e602

File tree

2 files changed

+70
-63
lines changed

2 files changed

+70
-63
lines changed

docs/.vuepress/config.js

Lines changed: 64 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,66 @@
11
module.exports = {
2-
title: 'Codestellar',
3-
description: 'The website is my public notebook, where I share what I have learnt. I am mostly working on Azure Portal, Azure DevOps, .Net Core, HTML, CSS and JavaScript Technologies.',
4-
themeConfig: {
5-
//logo: '/assets/img/logo.png',
6-
displayAllHeaders: true,
7-
nav: [
8-
{ text: 'Home', link: '/' },
9-
{ text: 'News & Events', link: '/news-and-events/' },
10-
{ text: 'Blog', link: '/blog', items: [
11-
{text: 'Azure', link: '/azure/'}
12-
] },
13-
{
14-
text: 'JavaScript',
15-
items: [
16-
{text: 'Performance Testing with K6', link: '/javascript/k6.md'}
17-
]
18-
},
19-
{ text: 'DevOps', link: '/devops',
20-
items: [
21-
{text: 'Jenkins: Getting Started', link: '/devops/jenkins-getting-started.md'}
22-
]
23-
},
24-
{ text: 'php', link: '/php/' },
25-
{ text: 'more', link: '/more/' },
26-
{ text: 'LinkedIn', link: 'https://www.linkedin.com/in/codestellar/' }
27-
],
28-
sidebar: [
29-
{
30-
title: 'Main menu', // required
31-
path: '/more/', // optional, link of the title, which should be an absolute path and must exist
32-
collapsable: false, // optional, defaults to true
33-
sidebarDepth: 1, // optional, defaults to 1
34-
children: [
35-
'/gen-ai/'
36-
]
37-
},
38-
{
39-
title: 'DevOps', // required
40-
path: '/devops/', // optional, link of the title, which should be an absolute path and must exist
41-
collapsable: false, // optional, defaults to true
42-
sidebarDepth: 1, // optional, defaults to 1
43-
children: [
44-
'/devops/jenkins-getting-started'
45-
]
46-
},
47-
{
48-
title: 'More', // required
49-
path: '/more/', // optional, link of the title, which should be an absolute path and must exist
50-
collapsable: false, // optional, defaults to true
51-
sidebarDepth: 1, // optional, defaults to 1
52-
children: [
53-
'/gen-ai/'
54-
]
55-
}
56-
]
2+
title: "Codestellar",
3+
description:
4+
"The website is my public notebook, where I share what I have learnt. I am mostly working on Azure Portal, Azure DevOps, .Net Core, HTML, CSS and JavaScript Technologies.",
5+
themeConfig: {
6+
//logo: '/assets/img/logo.png',
7+
displayAllHeaders: true,
8+
nav: [
9+
{ text: "Home", link: "/" },
10+
{ text: "News & Events", link: "/news-and-events/" },
11+
{
12+
text: "Blog",
13+
link: "/blog",
14+
items: [{ text: "Azure", link: "/azure/" }],
5715
},
58-
// configureWebpack: {
59-
// resolve: {
60-
// alias: {
61-
// '@alias': 'path/to/some/dir'
62-
// }
63-
// }
64-
}
16+
{
17+
text: "JavaScript",
18+
items: [
19+
{ text: "Performance Testing with K6", link: "/javascript/k6.md" },
20+
],
21+
},
22+
{
23+
text: "DevOps",
24+
link: "/devops",
25+
items: [
26+
{
27+
text: "Jenkins: Getting Started",
28+
link: "/devops/jenkins-getting-started.md",
29+
},
30+
],
31+
},
32+
{ text: "php", link: "/php/" },
33+
{ text: "more", link: "/more/" },
34+
{ text: "LinkedIn", link: "https://www.linkedin.com/in/codestellar/" },
35+
],
36+
sidebar: [
37+
{
38+
title: "Main menu", // required
39+
path: "/more/", // optional, link of the title, which should be an absolute path and must exist
40+
collapsable: false, // optional, defaults to true
41+
sidebarDepth: 1, // optional, defaults to 1
42+
children: ["/gen-ai/"],
43+
},
44+
{
45+
title: "DevOps", // required
46+
path: "/devops/", // optional, link of the title, which should be an absolute path and must exist
47+
collapsable: false, // optional, defaults to true
48+
sidebarDepth: 1, // optional, defaults to 1
49+
children: ["/devops/jenkins-getting-started"],
50+
},
51+
{
52+
title: "More", // required
53+
path: "/more/", // optional, link of the title, which should be an absolute path and must exist
54+
collapsable: false, // optional, defaults to true
55+
sidebarDepth: 1, // optional, defaults to 1
56+
children: ["/gen-ai/"],
57+
},
58+
],
59+
},
60+
// configureWebpack: {
61+
// resolve: {
62+
// alias: {
63+
// '@alias': 'path/to/some/dir'
64+
// }
65+
// }
66+
};

docs/aws/ReadMe.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
# AWS Articles should be coming here
1+
# AWS Articles should be coming here
2+
3+
1. How to check what all Database instances are publically accessible?
4+
````
5+
aws rds describe-db-instances --query "DBInstances[*].{DBInstance:DBInstanceIdentifier,PubliclyAccessible:PubliclyAccessible}" --region <region-name>
6+
````

0 commit comments

Comments
 (0)