-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
452 changed files
with
4,937 additions
and
7,320 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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Legacy Link Format Checker | ||
|
||
on: | ||
push: | ||
paths: | ||
- "website/content/**/*.mdx" | ||
- "website/data/*-nav-data.json" | ||
- ".github/workflows/check-legacy-links-format.yml" | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
check-links: | ||
if: github.repository == 'hashicorp/boundary' | ||
uses: hashicorp/dev-portal/.github/workflows/docs-content-check-legacy-links-format.yml@475289345d312552b745224b46895f51cc5fc490 | ||
with: | ||
repo-owner: "hashicorp" | ||
repo-name: "boundary" | ||
commit-sha: ${{ github.sha }} | ||
mdx-directory: "website/content" | ||
nav-data-directory: "website/data" |
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,71 +1,3 @@ | ||
# # Note that this is an example config file and is not intended to be functional as-is. | ||
# # Full configuration options can be found at https://www.boundaryproject.io/docs/configuration/controller | ||
# # Full configuration options can be found at https://www.boundaryproject.io/docs/configuration | ||
|
||
# # Disable memory lock: https://www.man7.org/linux/man-pages/man2/mlock.2.html | ||
# disable_mlock = true | ||
|
||
# # Controller configuration block | ||
# controller { | ||
# # This name attr must be unique across all controller instances if running in HA mode | ||
# name = "demo-controller-1" | ||
# description = "A controller for a demo!" | ||
|
||
# # Database URL for postgres. This can be a direct "postgres://" | ||
# # URL, or it can be "file://" to read the contents of a file to | ||
# # supply the url, or "env://" to name an environment variable | ||
# # that contains the URL. | ||
# database { | ||
# url = "postgresql://boundary:[email protected]:5432/boundary" | ||
# } | ||
# } | ||
|
||
# # API listener configuration block | ||
# listener "tcp" { | ||
# # Should be the address of the NIC that the controller server will be reached on | ||
# address = "10.0.0.1" | ||
# # The purpose of this listener block | ||
# purpose = "api" | ||
|
||
# tls_disable = false | ||
|
||
# # Uncomment to enable CORS for the Admin UI. Be sure to set the allowed origin(s) | ||
# # to appropriate values. | ||
# #cors_enabled = true | ||
# #cors_allowed_origins = ["https://yourcorp.yourdomain.com", "serve://boundary"] | ||
# } | ||
|
||
# # Data-plane listener configuration block (used for worker coordination) | ||
# listener "tcp" { | ||
# # Should be the IP of the NIC that the worker will connect on | ||
# address = "10.0.0.1" | ||
# # The purpose of this listener | ||
# purpose = "cluster" | ||
# } | ||
|
||
# # Root KMS configuration block: this is the root key for Boundary | ||
# # Use a production KMS such as AWS KMS in production installs | ||
# kms "aead" { | ||
# purpose = "root" | ||
# aead_type = "aes-gcm" | ||
# key = "sP1fnF5Xz85RrXyELHFeZg9Ad2qt4Z4bgNHVGtD6ung=" | ||
# key_id = "global_root" | ||
# } | ||
|
||
# # Worker authorization KMS | ||
# # Use a production KMS such as AWS KMS for production installs | ||
# # This key is the same key used in the worker configuration | ||
# kms "aead" { | ||
# purpose = "worker-auth" | ||
# aead_type = "aes-gcm" | ||
# key = "8fZBjCUfN0TzjEGLQldGY4+iE9AkOvCfjh7+p0GtRBQ=" | ||
# key_id = "global_worker-auth" | ||
# } | ||
|
||
# # Recovery KMS block: configures the recovery key for Boundary | ||
# # Use a production KMS such as AWS KMS for production installs | ||
# kms "aead" { | ||
# purpose = "recovery" | ||
# aead_type = "aes-gcm" | ||
# key = "8fZBjCUfN0TzjEGLQldGY4+iE9AkOvCfjh7+p0GtRBQ=" | ||
# key_id = "global_recovery" | ||
# } |
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,71 @@ | ||
# # Note that this is an example systemd file and is not intended to be functional as-is. | ||
# # Full configuration options can be found at https://www.boundaryproject.io/docs/configuration/controller | ||
|
||
# # Disable memory lock: https://www.man7.org/linux/man-pages/man2/mlock.2.html | ||
# # disable_mlock = true | ||
|
||
# # Controller configuration block | ||
# controller { | ||
# # This name attr must be unique across all controller instances if running in HA mode | ||
# name = "demo-controller-1" | ||
# description = "A controller for a demo!" | ||
|
||
# # Database URL for postgres. This can be a direct "postgres://" | ||
# # URL, or it can be "file://" to read the contents of a file to | ||
# # supply the url, or "env://" to name an environment variable | ||
# # that contains the URL. | ||
# database { | ||
# url = "postgresql://boundary:[email protected]:5432/boundary" | ||
# } | ||
# } | ||
|
||
# # API listener configuration block | ||
# listener "tcp" { | ||
# # Should be the address of the NIC that the controller server will be reached on | ||
# address = "10.0.0.1" | ||
# # The purpose of this listener block | ||
# purpose = "api" | ||
|
||
# tls_disable = false | ||
|
||
# # Uncomment to enable CORS for the Admin UI. Be sure to set the allowed origin(s) | ||
# # to appropriate values. | ||
# #cors_enabled = true | ||
# #cors_allowed_origins = ["https://yourcorp.yourdomain.com", "serve://boundary"] | ||
# } | ||
|
||
# # Data-plane listener configuration block (used for worker coordination) | ||
# listener "tcp" { | ||
# # Should be the IP of the NIC that the worker will connect on | ||
# address = "10.0.0.1" | ||
# # The purpose of this listener | ||
# purpose = "cluster" | ||
# } | ||
|
||
# # Root KMS configuration block: this is the root key for Boundary | ||
# # Use a production KMS such as AWS KMS in production installs | ||
# kms "aead" { | ||
# purpose = "root" | ||
# aead_type = "aes-gcm" | ||
# key = "sP1fnF5Xz85RrXyELHFeZg9Ad2qt4Z4bgNHVGtD6ung=" | ||
# key_id = "global_root" | ||
# } | ||
|
||
# # Worker authorization KMS | ||
# # Use a production KMS such as AWS KMS for production installs | ||
# # This key is the same key used in the worker configuration | ||
# kms "aead" { | ||
# purpose = "worker-auth" | ||
# aead_type = "aes-gcm" | ||
# key = "8fZBjCUfN0TzjEGLQldGY4+iE9AkOvCfjh7+p0GtRBQ=" | ||
# key_id = "global_worker-auth" | ||
# } | ||
|
||
# # Recovery KMS block: configures the recovery key for Boundary | ||
# # Use a production KMS such as AWS KMS for production installs | ||
# kms "aead" { | ||
# purpose = "recovery" | ||
# aead_type = "aes-gcm" | ||
# key = "8fZBjCUfN0TzjEGLQldGY4+iE9AkOvCfjh7+p0GtRBQ=" | ||
# key_id = "global_recovery" | ||
# } |
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.