Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Secrets Store links #657

Merged
merged 2 commits into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/actions/spelling/allow.txt
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,7 @@ jupyterhub
JWKS
kernel
keycloak
keyfile
keyout
keypair
keyring
Expand Down Expand Up @@ -403,6 +404,7 @@ myproxy
myrepo
myreposgm
myserver
mysql
mysqldump
mysqldumpmds
myvo
Expand Down Expand Up @@ -517,6 +519,7 @@ RDIG
rdkit
rdm
reassignable
redis
refeds
refreshtoken
reportgroups
Expand Down
6 changes: 6 additions & 0 deletions .github/actions/spelling/expect.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
allowfullscreen
autoplay
CVMFS
dearmor
delims
diracsgm
findstr
iframe
jscpd
jwt
lsb
markdownlint
mytoken
pem
prettierrc
reponame
sgm
Expand Down
1 change: 1 addition & 0 deletions .github/actions/spelling/patterns.txt
Original file line number Diff line number Diff line change
Expand Up @@ -151,3 +151,4 @@ mailto:[-a-zA-Z=;:/?%&0-9+@.]{3,}
\bmicrok8s\b
\ba2enmod\b
\beduGAIN\b
\b-field\b
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ node endpoints is not recommended: if a server is down, its endpoint is not
accessible.{{% /alert %}}

For convenience and high availability, you should use the
[generic endpoint](https://vault.services.fedcloud.eu:8200) to access the
[generic endpoint](https://secrets.egi.eu) to access the
service. This generic endpoint will be pointed to one of the service nodes
automatically via [Dynamic DNS](../../../compute/cloud-compute/dynamic-dns/).
A simple cron script periodically checks and assigns the generic hostname to
Expand Down
10 changes: 5 additions & 5 deletions content/en/users/security/secrets-store/cli/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

The [FedCloud client](../../../getting-started/cli) is integrated with the EGI
Secrets Store service, so that users can access the service immediately with
simple commands. Below is a quickstart to using the service.
simple commands. Below is a quick start to using the service.

### Basic usage

Expand Down Expand Up @@ -524,7 +524,7 @@
To get a Vault token:

```shell
$ export VAULT_ADDR=https://vault.services.fedcloud.eu:8200
$ export VAULT_ADDR=https://secrets.egi.eu
$ export VAULT_TOKEN=$(vault write auth/jwt/login jwt=$OIDC_ACCESS_TOKEN |
grep -Po 'token\s+\K[^\s]+$')
```
Expand All @@ -534,7 +534,7 @@
To get a Vault token:

```powershell
> $env:VAULT_ADDR="https://vault.services.fedcloud.eu:8200"
> $env:VAULT_ADDR="https://secrets.egi.eu"
> $env:VAULT_TOKEN=$(vault write auth/jwt/login jwt=$env:OIDC_ACCESS_TOKEN `
| Select-String -Pattern "(?<=token\s+)[^\s]+(?=$)" `
| %{$_.Matches.value})
Expand All @@ -545,7 +545,7 @@
To get a Vault token:

```shell
> set VAULT_ADDR=https://vault.services.fedcloud.eu:8200
> set VAULT_ADDR=https://secrets.egi.eu
> for /f "delims=" %a in ('vault write auth/jwt/login "jwt=%OIDC_ACCESS_TOKEN%" ^| findstr /r /c:"token[ ][ ]*[^^ ]*"') do @set VAULT_TOKEN=%a:token=%
> set VAULT_TOKEN=%VAULT_TOKEN: =%
```
Expand Down Expand Up @@ -643,7 +643,7 @@
{{< /tabx >}}{{< /tabpanex >}}

{{% alert title="Tip" color="info" %}} Use quotes if the key or value includes
whitespaces. You can include in the same quote both the key and the value.
white spaces. You can include in the same quote both the key and the value.
{{% /alert %}}

{{% alert title="Note" color="info" %}} You can add as many key to a secret as
Expand Down Expand Up @@ -671,7 +671,7 @@
To read specific keys from a secret:

```shell
$ vault read -field="my-key" $VAULT_HOME/test

Check failure on line 674 in content/en/users/security/secrets-store/cli/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`ield` is not a recognized word. (unrecognized-spelling)
test value
```

Expand All @@ -691,7 +691,7 @@
To read specific keys from a secret:

```powershell
$ vault read -field="my-key" $env:VAULT_HOME/test

Check failure on line 694 in content/en/users/security/secrets-store/cli/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`ield` is not a recognized word. (unrecognized-spelling)
test value
```

Expand All @@ -711,7 +711,7 @@
To read specific keys from a secret:

```shell
$ vault read -field="my-key" %VAULT_HOME%/test

Check failure on line 714 in content/en/users/security/secrets-store/cli/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`ield` is not a recognized word. (unrecognized-spelling)
test value
```

Expand Down
2 changes: 1 addition & 1 deletion content/en/users/security/secrets-store/gui/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ are available on the
Follow the steps below to access the web interface of EGI Secrets Store:

<!-- markdownlint-disable no-bare-urls -->
- Open https://vault.services.fedcloud.eu:8200 in your browser.
- Open https://secrets.egi.eu in your browser.
- Choose the _OIDC authentication_ method in the pulldown menu, then click
_Sign in with OIDC provider_.
- Login via _EGI Check-in_ and authorize the Vault GUI.
Expand Down
Loading