-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adopt markdownlint-cli2, sentence-per-line lint
- Loading branch information
1 parent
e23c1d3
commit 2609005
Showing
29 changed files
with
1,188 additions
and
1,002 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,22 @@ jobs: | |
- uses: "bewuethr/[email protected]" | ||
with: | ||
config-file: ".yamllint" | ||
- uses: "nosborn/github-action-[email protected]" | ||
- uses: "pnpm/action-setup@v3" | ||
with: | ||
files: "." | ||
config_file: ".markdownlint.yaml" | ||
version: 8 | ||
- name: "Export pnpm store" | ||
shell: "bash" | ||
run: | | ||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | ||
- name: "Setup pnpm cache" | ||
uses: "actions/cache@v4" | ||
with: | ||
path: "${{ env.STORE_PATH }}" | ||
key: "${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}" | ||
restore-keys: "${{ runner.os }}-pnpm-store-" | ||
- name: "Install dependencies" | ||
shell: "bash" | ||
run: "pnpm install" | ||
- name: "Lint" | ||
shell: "bash" | ||
run: "pnpm run lint" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
config: | ||
fenced-code-langauage: false | ||
fenced-code-language: false | ||
first-line-h1: false | ||
line-length: false | ||
link-image-reference-definitions: false | ||
no-duplicate-heading: false | ||
no-hard-tabs: false | ||
no-inline-html: false | ||
customRules: | ||
- "markdownlint-rule-max-one-sentence-per-line" | ||
fix: false | ||
globs: | ||
- "pages/**/*{.mdx,.md.markdown}" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
# Private Networking | ||
|
||
Private Networking is functionality exclusive to AuthZed Dedicated that restricts network access to internal networks. When enabled, connections that are not configured are rejected. | ||
Private Networking is functionality exclusive to AuthZed Dedicated that restricts network access to internal networks. | ||
When enabled, connections that are not configured are rejected. | ||
|
||
By adding this additional layer of security, entire classes of security risk are eliminated because only trusted networks have access to the software powering your authorization systems. | ||
|
||
While completely optional, we recommend all users to secure their connections to SpiceDB using Private Networking. | ||
|
||
In the scenario you choose not to use Private Networking, AuthZed Dedicated can alternatively be configured for access over the open internet. | ||
|
||
## Architecture | ||
## Architecture | ||
|
||
The following diagram models Private Networking on AWS using AWS PrivateLink: | ||
|
||
![Diagram displaying PrivateLink connecting AWS accounts](/images/aws-dedicated-diagram.png) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.