Skip to content

Commit 63d10c7

Browse files
authored
Add some JSON as a reusable as a bug workaround (#55829)
1 parent 0d5ebb6 commit 63d10c7

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

content/actions/security-for-github-actions/security-hardening-your-deployments/configuring-openid-connect-in-jfrog.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,7 @@ For an example {% data variables.product.prodname_actions %} workflow using the
3535

3636
For example, you can set `iss` to `https://token.actions.githubusercontent.com`, and the `repository` to something like "octo-org/octo-repo"`. This will ensure only Actions workflows from the specified repository will have access to your JFrog platform. The following is an example Claims JSON when configuring identity mappings.
3737

38-
```json copy
39-
{
40-
"iss": "https://token.actions.githubusercontent.com",
41-
"repository": "octo-org/octo-repo"
42-
}
43-
```
38+
{% data reusables.actions.jfrog-json-configuring-identity-mappings %}
4439

4540
## Adding the identity provider to JFrog
4641

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
```json copy
2+
{
3+
"iss": "https://token.actions.githubusercontent.com",
4+
"repository": "octo-org/octo-repo"
5+
}
6+
```

0 commit comments

Comments
 (0)