Skip to content

Commit dedaefc

Browse files
authored
Merge pull request #83 from cloudgraphdev/alpha
Beta Release
2 parents d052e4a + b56602e commit dedaefc

4 files changed

Lines changed: 30 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# [0.22.0-alpha.1](https://github.com/cloudgraphdev/cli/compare/0.21.4...0.22.0-alpha.1) (2022-05-10)
2+
3+
4+
### Features
5+
6+
* **tencent:** add tencent in provider list ([f4ade5b](https://github.com/cloudgraphdev/cli/commit/f4ade5b3dbf6343e7595afb2ee8ecf5c7dbb412b))
7+
8+
## [0.21.4](https://github.com/cloudgraphdev/cli/compare/0.21.3...0.21.4) (2022-04-27)
9+
10+
11+
### Bug Fixes
12+
13+
* **rebase:** fastforward alpha to main ([a2416f4](https://github.com/cloudgraphdev/cli/commit/a2416f4a4c83836c0f65aa4f7ed22026f35bceba))
14+
* Update scan/load output of query engine location to be accurate ([af74605](https://github.com/cloudgraphdev/cli/commit/af746059eab95ec8163fc4d14c9e2d7321e84e46))
15+
116
## [0.21.4-beta.1](https://github.com/cloudgraphdev/cli/compare/0.21.3...0.21.4-beta.1) (2022-04-14)
217

318

README.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
CloudGraph is the free open-source universal **GraphQL API and Cloud Security Posture Management (CSPM) tool for AWS, Azure, GCP, and K8s**. With CloudGraph you get:
1313

14-
- Free and effortless _compliance checks_ (i.e. CIS 1.2)
14+
- Free and effortless _compliance checks_ (i.e. Azure CIS 1.3.1, GCP CIS 1.2, AWS CIS 1.2, AWS CIS 1.3, AWS CIS 1.4, AWS PCI 3.2.1, AWS NIST 800-53 Rev. 4)
1515
- _Type-Safe asset inventories_ for all of your resources in all of your cloud environments
1616
- Automatically generated documentation and query validation - know if your query is valid before you send it!
1717
- Full resource data including _relationships_ between resources so you can understand context
@@ -211,9 +211,11 @@ cg init aws azure gcp k8s
211211
And add in compliance policy packs to supplement your data with instant security insights:
212212

213213
```bash
214-
cg policy add aws-cis-1.2.0
215214
cg policy add gcp-cis-1.2.0
216215
cg policy add azure-cis-1.3.1
216+
cg policy add aws-cis-1.2.0
217+
cg policy add aws-pci-dss-3.2.1
218+
cg policy add aws-nist-800-53-rev4
217219
```
218220

219221
You can find a list of currently supported policy packs in the [Policy Packs repo](https://github.com/cloudgraphdev/cloudgraph-policy-packs)
@@ -1444,7 +1446,7 @@ EXAMPLES
14441446
$ cg init aws -r [Specify resources to crawl]
14451447
```
14461448

1447-
_See code: [src/commands/init.ts](https://github.com/cloudgraphdev/cli/blob/v0.21.4-beta.1/src/commands/init.ts)_
1449+
_See code: [src/commands/init.ts](https://github.com/cloudgraphdev/cli/blob/v0.22.0-alpha.1/src/commands/init.ts)_
14481450

14491451
## `cg launch [PROVIDER]`
14501452

@@ -1476,7 +1478,7 @@ EXAMPLES
14761478
$ cg launch
14771479
```
14781480

1479-
_See code: [src/commands/launch.ts](https://github.com/cloudgraphdev/cli/blob/v0.21.4-beta.1/src/commands/launch.ts)_
1481+
_See code: [src/commands/launch.ts](https://github.com/cloudgraphdev/cli/blob/v0.22.0-alpha.1/src/commands/launch.ts)_
14801482

14811483
## `cg load [PROVIDER]`
14821484

@@ -1510,7 +1512,7 @@ EXAMPLES
15101512
$ cg load aws [Load data for AWS]
15111513
```
15121514

1513-
_See code: [src/commands/load.ts](https://github.com/cloudgraphdev/cli/blob/v0.21.4-beta.1/src/commands/load.ts)_
1515+
_See code: [src/commands/load.ts](https://github.com/cloudgraphdev/cli/blob/v0.22.0-alpha.1/src/commands/load.ts)_
15141516

15151517
## `cg policy [PROVIDER]`
15161518

@@ -1539,7 +1541,7 @@ DESCRIPTION
15391541
Commands to manage policy pack modules, run $ cg policy for more info.
15401542
```
15411543

1542-
_See code: [src/commands/policy/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.21.4-beta.1/src/commands/policy/index.ts)_
1544+
_See code: [src/commands/policy/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.22.0-alpha.1/src/commands/policy/index.ts)_
15431545

15441546
## `cg policy add [PROVIDER]`
15451547

@@ -1752,7 +1754,7 @@ DESCRIPTION
17521754
Commands to manage provider modules, run $ cg provider for more info.
17531755
```
17541756

1755-
_See code: [src/commands/provider/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.21.4-beta.1/src/commands/provider/index.ts)_
1757+
_See code: [src/commands/provider/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.22.0-alpha.1/src/commands/provider/index.ts)_
17561758

17571759
## `cg provider add [PROVIDER]`
17581760

@@ -1974,7 +1976,7 @@ EXAMPLES
19741976
$ cg scan aws --no-serve [Do not start the query engine]
19751977
```
19761978

1977-
_See code: [src/commands/scan.ts](https://github.com/cloudgraphdev/cli/blob/v0.21.4-beta.1/src/commands/scan.ts)_
1979+
_See code: [src/commands/scan.ts](https://github.com/cloudgraphdev/cli/blob/v0.22.0-alpha.1/src/commands/scan.ts)_
19781980

19791981
## `cg serve [PROVIDER]`
19801982

@@ -2006,7 +2008,7 @@ EXAMPLES
20062008
$ cg serve
20072009
```
20082010

2009-
_See code: [src/commands/serve.ts](https://github.com/cloudgraphdev/cli/blob/v0.21.4-beta.1/src/commands/serve.ts)_
2011+
_See code: [src/commands/serve.ts](https://github.com/cloudgraphdev/cli/blob/v0.22.0-alpha.1/src/commands/serve.ts)_
20102012

20112013
## `cg teardown [PROVIDER]`
20122014

@@ -2028,7 +2030,7 @@ EXAMPLES
20282030
$ cg teardown --delete-image
20292031
```
20302032

2031-
_See code: [src/commands/teardown.ts](https://github.com/cloudgraphdev/cli/blob/v0.21.4-beta.1/src/commands/teardown.ts)_
2033+
_See code: [src/commands/teardown.ts](https://github.com/cloudgraphdev/cli/blob/v0.22.0-alpha.1/src/commands/teardown.ts)_
20322034

20332035
## `cg update [PROVIDER]`
20342036

@@ -2064,5 +2066,5 @@ EXAMPLES
20642066
$ cg update
20652067
```
20662068

2067-
_See code: [src/commands/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.21.4-beta.1/src/commands/update.ts)_
2069+
_See code: [src/commands/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.22.0-alpha.1/src/commands/update.ts)_
20682070
<!-- commandsstop -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@cloudgraph/cli",
33
"description": "Scan your cloud infrastructure data and query it with GraphQL",
4-
"version": "0.21.4-beta.1",
4+
"version": "0.22.0-alpha.1",
55
"author": "AutoCloud",
66
"license": "MPL-2.0",
77
"publishConfig": {

src/utils/questions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const getProviderQuestion: ListQuestion[] = [
1717
type: 'list',
1818
name: 'provider',
1919
message: 'Which cloud provider would you like to use?',
20-
choices: ['aws', 'azure', 'gcp', 'k8s'],
20+
choices: ['aws', 'azure', 'gcp', 'k8s', 'tencent'],
2121
},
2222
]
2323

0 commit comments

Comments
 (0)