Skip to content

Commit 323cc19

Browse files
authored
chore: changed repo name (#558)
1 parent 3df60b9 commit 323cc19

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

content/blog/bytebase-vs-cloudbeaver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ On the other hand, the more common way to change the schema is to use **Schema E
158158

159159
- **CloudBeaver**: In theory, you can build GitOps solution via the GraphQL API, but there is no mature solutions.
160160

161-
- **Bytebase**: [GitOps best practice](https://github.com/bytebase/database-security-github-actions-example) to configure every aspect of database security.
161+
- **Bytebase**: [GitOps best practice](https://github.com/bytebase/example-database-security) to configure every aspect of database security.
162162

163163
## Summary
164164

content/blog/top-open-source-sql-clients.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Aforementioned tools are all client-side SQL editors for individual use. What if
8686
- **Data masking**. You may want to prevent users seeing sensitive data.
8787
- **Request and review workflow**. You want users go through a ticketing process to request the access rights.
8888
- **Audit logging**. You want to capture all operations performed on the database.
89-
- **Policy as Code (GitOps)**. Permission control and masking policies can be [codified](https://github.com/bytebase/database-security-github-actions-example) and integrated with your existing DevOps pipeline.
89+
- **Policy as Code (GitOps)**. Permission control and masking policies can be [codified](https://github.com/bytebase/example-database-security) and integrated with your existing DevOps pipeline.
9090

9191
All above requirements call for a server-side solution. And that's what [Bytebase SQL Editor](/sql-editor) provides.
9292

content/blog/what-is-database-devsecops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ efficient querying for authorized users.
7575

7676
<HintBlock type="info">
7777

78-
Unlike client-side solutions, Bytebase is a server-side solution providing [access control](/docs/security/database-permission/overview/), [dynamic data masking](/docs/security/data-masking/overview/), [audit logging](/docs/security/audit-log/). You can also [codify these data security policies (Policy-as-Code)](https://github.com/bytebase/database-security-github-actions-example).
78+
Unlike client-side solutions, Bytebase is a server-side solution providing [access control](/docs/security/database-permission/overview/), [dynamic data masking](/docs/security/data-masking/overview/), [audit logging](/docs/security/audit-log/). You can also [codify these data security policies (Policy-as-Code)](https://github.com/bytebase/example-database-security).
7979

8080
</HintBlock>
8181

content/changelog/bytebase-3-3-0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To request our SOC 2 Type 1 report, please email [[email protected]](mailto:s
1414

1515
## 🔔 Breaking Changes
1616

17-
- Simplify data masking, both UI and API are affected, check [docs](/docs/security/data-masking/overview/) and [API examples](https://github.com/bytebase/database-security-github-actions-example/tree/main/masking) for details. Behavior changes:
17+
- Simplify data masking, both UI and API are affected, check [docs](/docs/security/data-masking/overview/) and [API examples](https://github.com/bytebase/example-database-security/tree/main/masking) for details. Behavior changes:
1818
- Global masking takes precedence over column masking. Previously, column masking takes precedence over global masking.
1919
- Eliminate masking levels. For both global masking and column masking, you now configure the associated semantic type. Semantic type in turn maps to the corresponding masking algorithm.
2020

content/docs/security/data-masking/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ organizations to protect sensitive data from being exposed to unauthorized users
1212

1313
<HintBlock type="info">
1414

15-
You can configure the masking policies from UI or via API. Check out [this GitOps example](https://github.com/bytebase/database-security-github-actions-example) to see how to codify the masking policies.
15+
You can configure the masking policies from UI or via API. Check out [this GitOps example](https://github.com/bytebase/example-database-security) to see how to codify the masking policies.
1616

1717
</HintBlock>
1818

content/docs/tutorials/data-masking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ from being exposed to unauthorized users.
2020
<HintBlock type="info">
2121

2222
This tutorial covers configuration via UI console. You can also codify the masking policies, check
23-
out [this sample](https://github.com/bytebase/database-security-github-actions-example/tree/main/masking).
23+
out [this sample](https://github.com/bytebase/example-database-security/tree/main/masking).
2424

2525
</HintBlock>
2626

content/docs/tutorials/github-action-data-masking-part1.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ In this tutorial, you'll learn how to automate database masking policies using G
3131
- Manage data masking rules as code
3232
- Automatically apply masking policies when PRs are merged
3333

34-
Here is [a merged pull request](https://github.com/bytebase/database-security-github-actions-example/pull/81) as an example, for this tutorial, only "Semantic Type and Global Masking Rule" is covered.
34+
Here is [a merged pull request](https://github.com/bytebase/example-database-security/pull/81) as an example, for this tutorial, only "Semantic Type and Global Masking Rule" is covered.
3535

3636
<HintBlock type="info">
3737

38-
The complete code for this tutorial is available at: [database-security-github-actions-example](https://github.com/bytebase/database-security-github-actions-example)
38+
The complete code for this tutorial is available at: [example-database-security](https://github.com/bytebase/example-database-security)
3939

4040
</HintBlock>
4141

@@ -68,7 +68,7 @@ Before you begin, make sure you have:
6868

6969
### Step 4 - Configure GitHub Actions
7070

71-
1. Fork [Database Security GitHub Actions Example](https://github.com/bytebase/database-security-github-actions-example).
71+
1. Fork [Database Security GitHub Actions Example](https://github.com/bytebase/example-database-security).
7272

7373
1. Click **Settings** and then click **Secrets and variables > Actions**. Add the following secrets:
7474

@@ -78,7 +78,7 @@ Before you begin, make sure you have:
7878

7979
### Step 5 - Understanding the GitHub Workflow
8080

81-
Let's dig into the GitHub Actions workflow [code](https://github.com/bytebase/database-security-github-actions-example/blob/main/.github/workflows/1-bb-masking-semantic-type-global.yml):
81+
Let's dig into the GitHub Actions workflow [code](https://github.com/bytebase/example-database-security/blob/main/.github/workflows/1-bb-masking-semantic-type-global.yml):
8282

8383
1. **Trigger**: Workflow runs when PRs are merged to `main`.
8484

content/docs/tutorials/github-action-data-masking-part2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ In this tutorial, you'll learn how to automate column masking and masking exempt
2929
- Manage data masking rules as code
3030
- Automatically apply masking policies when PRs are merged
3131

32-
Here is [a merged pull request](https://github.com/bytebase/database-security-github-actions-example/pull/81) as an example.
32+
Here is [a merged pull request](https://github.com/bytebase/example-database-security/pull/81) as an example.
3333

3434
<HintBlock type="info">
3535

36-
The complete code for this tutorial is available at: [database-security-github-actions-example](https://github.com/bytebase/database-security-github-actions-example)
36+
The complete code for this tutorial is available at: [example-database-security](https://github.com/bytebase/example-database-security)
3737

3838
</HintBlock>
3939

content/docs/tutorials/github-action-data-masking-part3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ In this tutorial, you'll learn how to automate data classification using GitHub
3131

3232
<HintBlock type="info">
3333

34-
The complete code for this tutorial is available at: [database-security-github-actions-example](https://github.com/bytebase/database-security-github-actions-example)
34+
The complete code for this tutorial is available at: [example-database-security](https://github.com/bytebase/example-database-security)
3535

3636
</HintBlock>
3737

0 commit comments

Comments
 (0)