1
0
mirror of synced 2025-12-23 11:54:18 -05:00

Update copy syntax to CommonMark compliant

This commit is contained in:
Kevin Heis
2023-06-12 08:11:20 -07:00
parent a7a368871e
commit 5f0ca62ed3
239 changed files with 736 additions and 736 deletions

View File

@@ -51,7 +51,7 @@ To configure {% data variables.product.prodname_ghe_server %} to use OIDC with a
1. Get the thumbprint for {% data variables.location.product_location_enterprise %}.
1. Use the following OpenSSL command to get the SHA1 thumbprint for {% data variables.location.product_location_enterprise %}, replacing `HOSTNAME` with the public hostname for {% data variables.location.product_location_enterprise %}
```shell{:copy}
```shell copy
openssl s_client -connect HOSTNAME:443 < /dev/null 2>/dev/null | openssl x509 -fingerprint -noout -sha1 -in /dev/stdin
```
@@ -75,7 +75,7 @@ To configure {% data variables.product.prodname_ghe_server %} to use OIDC with a
```
1. Using the AWS CLI, use the following command to create an OIDC provider for {% data variables.location.product_location_enterprise %}. Replace `HOSTNAME` with the public hostname for {% data variables.location.product_location_enterprise %}, and `THUMBPRINT` with the thumbprint value from the previous step.
```shell{:copy}
```shell copy
aws iam create-open-id-connect-provider \
--url https://HOSTNAME/_services/token \
--client-id-list "sts.amazonaws.com" \
@@ -84,7 +84,7 @@ To configure {% data variables.product.prodname_ghe_server %} to use OIDC with a
For example:
```shell{:copy}
```shell copy
aws iam create-open-id-connect-provider \
--url https://my-ghes-host.example.com/_services/token \
--client-id-list "sts.amazonaws.com" \