Skip to content

Commit 5929c29

Browse files
authored
fix: resoto -> fix (#216)
1 parent 6415f25 commit 5929c29

File tree

33 files changed

+75
-73
lines changed

33 files changed

+75
-73
lines changed

docs/development/apps.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ Using [`fixinventoryappbundler`](https://github.com/someengineering/fixinventory
4848
You can perform a dry run of the `cleanup-untagged` app for sample infrastructure app output:
4949

5050
```bash
51-
$ resotoapprunner --path fixinventory-apps/cleanup-untagged/
51+
$ fixinventoryapprunner --path fixinventory-apps/cleanup-untagged/
5252
```
5353

5454
:::
5555

5656
6. Bundle all apps into a single `index.json` file:
5757

5858
```bash
59-
$ resotoappbundler --path fixinventory-apps/ --discover > index.json
59+
$ fixinventoryappbundler --path fixinventory-apps/ --discover > index.json
6060
```
6161

6262
7. From within [Fix Inventory Shell](../reference/components/shell.mdx), install an app using the [`app install` command](../reference/cli/app/install.mdx):

docs/how-to-guides/data-sources/collect-aws-resource-data.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ See [How to Roll Out Fix Inventory AWS Permissions with CloudFormation](../confi
284284

285285
:::info
286286

287-
If you prefer to deploy the role yourself, the S3 URL of the template to create the `FixInventoryAccess` role is [https://resotopublic.s3.amazonaws.com/cf/fixinventory-role.template](https://resotopublic.s3.amazonaws.com/cf/fixinventory-role.template).
287+
If you prefer to deploy the role yourself, the S3 URL of the template to create the `FixInventoryAccess` role is [https://fixinventorypublic.s3.amazonaws.com/cf/fixinventory-role.template](https://fixinventorypublic.s3.amazonaws.com/cf/fixinventory-role.template).
288288

289289
:::
290290

docs/reference/cli/config/show.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ config show <id>
5151
# CLI related properties.
5252
​ cli:
5353
# Use this graph for CLI actions, if no graph is specified explicitly.
54-
​ default_graph: 'resoto'
54+
​ default_graph: 'fix'
5555
# Use this graph section by default, if no section is specified.
5656
# Relative paths will be interpreted with respect to this section.
5757
​ default_section: 'reported'

docs/reference/cli/db.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The `db` command synchronizes data to a SQL database.
4949
```
5050

5151
```bash title="Sync the complete graph to a postgresql database"
52-
> db sync postgresql --host localhost --port 5432 --database resoto --user ci --password bombproof
52+
> db sync postgresql --host localhost --port 5432 --database fix --user ci --password bombproof
5353
```
5454

5555
```bash title="Sync the complete graph to a mariadb database"

docs/reference/cli/env.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ env
1919
```bash title="fixshell will set the graph, section, and session ID"
2020
> env
2121
# highlight-start
22-
​graph: resoto
22+
​graph: fix
2323
​section: reported
24-
resoto_session_id: SHQF9MBUEJ
24+
fix_session_id: SHQF9MBUEJ
2525
# highlight-end
2626
```
2727

2828
```bash title="Environment variables can be defined directly on the command line"
2929
> section=desired foo=bla env
3030
# highlight-start
31-
​graph: resoto
31+
​graph: fix
3232
​section: desired
33-
resoto_session_id: SHQF9MBUEJ
33+
fix_session_id: SHQF9MBUEJ
3434
​foo: bla
3535
# highlight-end
3636
```

docs/reference/cli/graph/copy.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ graph copy [--force] [from_graph_name] <to_graph_name>
1616
## Example
1717

1818
```bash
19-
> graph copy resoto resoto_backup
19+
> graph copy fix fix_backup
2020
# highlight-start
21-
Graph resoto copied to resoto_backup.
21+
Graph fix copied to fix_backup.
2222
# highlight-end
2323
```
2424

docs/reference/cli/graph/delete.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ graph delete <graph_name>
1616
## Example
1717

1818
```bash
19-
> graph delete resoto_backup
19+
> graph delete fix_backup
2020
# highlight-start
21-
Graph resoto_backup deleted.
21+
Graph fix_backup deleted.
2222
# highlight-end
2323
```

docs/reference/cli/graph/export.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ graph export [--force] [graph_name] <file_name>
1616
## Example
1717

1818
```bash
19-
> graph export resoto fixinventory.graph
19+
> graph export fix fixinventory.graph
2020
# highlight-start
2121
Received a file fixinventory.graph, which is stored to ./fixinventory.graph
2222
# highlight-end

docs/reference/cli/graph/import.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ graph import [--force] [graph_name] <file_name>
1616
## Example
1717

1818
```bash
19-
> graph import resoto_test fixinventory.graph
19+
> graph import fix_test fixinventory.graph
2020
# highlight-start
21-
Graph resoto_test imported from fixinventory.graph.
21+
Graph fix_test imported from fixinventory.graph.
2222
# highlight-end
2323
```

docs/reference/cli/graph/list.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The `graph list` command lists all Fix Inventory Rewind [asset inventory graph](
1212
```bash
1313
> graph list
1414
# highlight-start
15-
resoto
15+
fix
1616
snapshot-fix-hourly-20230614T222121Z
1717
snapshot-fix-daily-20230614T222121Z
1818
# highlight-end

0 commit comments

Comments
 (0)