Skip to content

Commit 8c72782

Browse files
committed
More freshness
1 parent e97fdf3 commit 8c72782

File tree

5 files changed

+132
-139
lines changed

5 files changed

+132
-139
lines changed

azure-stack/includes/get-pki-certs-csrs-new-cn-only.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -3,46 +3,46 @@ author: sethmanheim
33
ms.author: sethm
44
ms.service: azure-stack
55
ms.topic: include
6-
ms.date: 10/26/2022
6+
ms.date: 08/12/2025
77
ms.reviewer: sethm
8-
ms.lastreviewed: 10/26/2022
8+
ms.lastreviewed: 08/12/2025
99
---
1010

1111
1. Generate CSRs by completing one of the following:
1212

13-
- For a **production deployment environment**, the first script will generate CSRs for deployment certificates:
13+
- For a production deployment environment, the first script generates CSRs for deployment certificates:
1414

15-
```powershell
16-
New-AzsCertificateSigningRequest -CertificateType Deployment -RegionName $regionName -FQDN $externalFQDN -OutputRequestPath $OutputDirectory -IdentitySystem $IdentitySystem
17-
```
15+
```powershell
16+
New-AzsCertificateSigningRequest -CertificateType Deployment -RegionName $regionName -FQDN $externalFQDN -OutputRequestPath $OutputDirectory -IdentitySystem $IdentitySystem
17+
```
1818
19-
- The second script, if desired, uses the `-IncludeContainerRegistry` and will generate a CSR for Azure Container Registry at the same time as CSRs for deployment certificates:
19+
- The second script, if desired, uses the `-IncludeContainerRegistry` and generates a CSR for Azure Container Registry at the same time as CSRs for deployment certificates:
2020
21-
```powershell
22-
New-AzsCertificateSigningRequest -CertificateType Deployment -RegionName $regionName -FQDN $externalFQDN -OutputRequestPath $OutputDirectory -IncludeContainerRegistry
23-
```
21+
```powershell
22+
New-AzsCertificateSigningRequest -CertificateType Deployment -RegionName $regionName -FQDN $externalFQDN -OutputRequestPath $OutputDirectory -IncludeContainerRegistry
23+
```
2424
25-
- The third script will generate CSRs for any optional PaaS services you've installed:
25+
- The third script generates CSRs for any optional PaaS services you installed:
2626
27-
```powershell
28-
# App Services
29-
New-AzsCertificateSigningRequest -CertificateType AppServices -RegionName $regionName -FQDN $externalFQDN -OutputRequestPath $OutputDirectory
27+
```powershell
28+
# App Services
29+
New-AzsCertificateSigningRequest -CertificateType AppServices -RegionName $regionName -FQDN $externalFQDN -OutputRequestPath $OutputDirectory
3030
31-
# DBAdapter (SQL/MySQL)
32-
New-AzsCertificateSigningRequest -CertificateType DbAdapter -RegionName $regionName -FQDN $externalFQDN -OutputRequestPath $OutputDirectory
31+
# DBAdapter (SQL/MySQL)
32+
New-AzsCertificateSigningRequest -CertificateType DbAdapter -RegionName $regionName -FQDN $externalFQDN -OutputRequestPath $OutputDirectory
3333
34-
# EventHubs
35-
New-AzsCertificateSigningRequest -CertificateType EventHubs -RegionName $regionName -FQDN $externalFQDN -OutputRequestPath $OutputDirectory
34+
# EventHubs
35+
New-AzsCertificateSigningRequest -CertificateType EventHubs -RegionName $regionName -FQDN $externalFQDN -OutputRequestPath $OutputDirectory
3636
37-
# Azure Container Registry
38-
New-AzsHubAzureContainerRegistryCertificateSigningRequest -CertificateType AzureContainerRegistry -RegionName $regionName -FQDN $externalFQDN -OutputRequestPath $OutputDirectory
39-
```
37+
# Azure Container Registry
38+
New-AzsHubAzureContainerRegistryCertificateSigningRequest -CertificateType AzureContainerRegistry -RegionName $regionName -FQDN $externalFQDN -OutputRequestPath $OutputDirectory
39+
```
4040
41-
- For a **development and test environment**, to generate a single CSR with multiple-subject alternative names, add the `-RequestType SingleCSR` parameter and value.
41+
- For a development and test environment, to generate a single CSR with multiple-subject alternative names, add the `-RequestType SingleCSR` parameter and value:
4242
43-
> [!IMPORTANT]
44-
> We do *not* recommend using this approach for production environments.
43+
> [!IMPORTANT]
44+
> This approach is not recommended for production environments.
4545
46-
```powershell
47-
New-AzsCertificateSigningRequest -CertificateType Deployment -RegionName $regionName -FQDN $externalFQDN -RequestType SingleCSR -OutputRequestPath $OutputDirectory -IdentitySystem $IdentitySystem
48-
```
46+
```powershell
47+
New-AzsCertificateSigningRequest -CertificateType Deployment -RegionName $regionName -FQDN $externalFQDN -RequestType SingleCSR -OutputRequestPath $OutputDirectory -IdentitySystem $IdentitySystem
48+
```

azure-stack/includes/get-pki-certs-csrs-new.md

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -3,52 +3,52 @@ author: sethmanheim
33
ms.author: sethm
44
ms.service: azure-stack
55
ms.topic: include
6-
ms.date: 10/26/2022
6+
ms.date: 08/12/2025
77
ms.reviewer: sethm
8-
ms.lastreviewed: 10/26/2022
8+
ms.lastreviewed: 08/12/2025
99
---
1010

1111
2. Generate CSRs by completing one of the following:
1212

13-
- For a **production deployment environment**, the first script will generate CSRs for deployment certificates:
13+
- For a production deployment environment, the first script generates CSRs for deployment certificates:
1414

15-
```powershell
16-
New-AzsHubDeploymentCertificateSigningRequest -RegionName $regionName -FQDN $externalFQDN -subject $subject -OutputRequestPath $OutputDirectory -IdentitySystem $IdentitySystem
17-
```
15+
```powershell
16+
New-AzsHubDeploymentCertificateSigningRequest -RegionName $regionName -FQDN $externalFQDN -subject $subject -OutputRequestPath $OutputDirectory -IdentitySystem $IdentitySystem
17+
```
1818
19-
- The second script, if desired, uses the `-IncludeContainerRegistry` and will generate a CSR for Azure Container Registry at the same time as CSRs for deployment certificates:
19+
- The second script, if desired, uses the `-IncludeContainerRegistry` and generates a CSR for Azure Container Registry at the same time as CSRs for deployment certificates:
2020
21-
```powershell
22-
New-AzsHubDeploymentCertificateSigningRequest -RegionName $regionName -FQDN $externalFQDN -subject $subject -OutputRequestPath $OutputDirectory -IdentitySystem $IdentitySystem -IncludeContainerRegistry
23-
```
21+
```powershell
22+
New-AzsHubDeploymentCertificateSigningRequest -RegionName $regionName -FQDN $externalFQDN -subject $subject -OutputRequestPath $OutputDirectory -IdentitySystem $IdentitySystem -IncludeContainerRegistry
23+
```
2424
25-
- The third script will generate CSRs for any optional PaaS services you've installed:
25+
- The third script generates CSRs for any optional PaaS services you installed:
2626
27-
```powershell
28-
# App Services
29-
New-AzsHubAppServicesCertificateSigningRequest -RegionName $regionName -FQDN $externalFQDN -subject $subject -OutputRequestPath $OutputDirectory
27+
```powershell
28+
# App Services
29+
New-AzsHubAppServicesCertificateSigningRequest -RegionName $regionName -FQDN $externalFQDN -subject $subject -OutputRequestPath $OutputDirectory
3030
31-
# DBAdapter (SQL/MySQL)
32-
New-AzsHubDbAdapterCertificateSigningRequest -RegionName $regionName -FQDN $externalFQDN -subject $subject -OutputRequestPath $OutputDirectory
31+
# DBAdapter (SQL/MySQL)
32+
New-AzsHubDbAdapterCertificateSigningRequest -RegionName $regionName -FQDN $externalFQDN -subject $subject -OutputRequestPath $OutputDirectory
3333
34-
# EventHubs
35-
New-AzsHubEventHubsCertificateSigningRequest -RegionName $regionName -FQDN $externalFQDN -subject $subject -OutputRequestPath $OutputDirectory
34+
# EventHubs
35+
New-AzsHubEventHubsCertificateSigningRequest -RegionName $regionName -FQDN $externalFQDN -subject $subject -OutputRequestPath $OutputDirectory
3636
37-
# Azure Container Registry
38-
New-AzsHubAzureContainerRegistryCertificateSigningRequest -RegionName $regionName -FQDN $externalFQDN -subject $subject -OutputRequestPath $OutputDirectory
39-
```
37+
# Azure Container Registry
38+
New-AzsHubAzureContainerRegistryCertificateSigningRequest -RegionName $regionName -FQDN $externalFQDN -subject $subject -OutputRequestPath $OutputDirectory
39+
```
4040
41-
- For a **low-privilege environment**, to generate a clear-text certificate template file with the necessary attributes declared, add the `-LowPrivilege` parameter:
41+
- For a low-privilege environment, to generate a clear-text certificate template file with the necessary attributes declared, add the `-LowPrivilege` parameter:
4242
43-
```powershell
44-
New-AzsHubDeploymentCertificateSigningRequest -RegionName $regionName -FQDN $externalFQDN -subject $subject -OutputRequestPath $OutputDirectory -IdentitySystem $IdentitySystem -LowPrivilege
45-
```
43+
```powershell
44+
New-AzsHubDeploymentCertificateSigningRequest -RegionName $regionName -FQDN $externalFQDN -subject $subject -OutputRequestPath $OutputDirectory -IdentitySystem $IdentitySystem -LowPrivilege
45+
```
4646
47-
- For a **development and test environment**, to generate a single CSR with multiple-subject alternative names, add the `-RequestType SingleCSR` parameter and value.
47+
- For a development and test environment, to generate a single CSR with multiple-subject alternative names, add the `-RequestType SingleCSR` parameter and value:
4848
49-
> [!IMPORTANT]
50-
> We do *not* recommend using this approach for production environments.
49+
> [!IMPORTANT]
50+
> This approach is not recommended for production environments.
5151
52-
```powershell
53-
New-AzsHubDeploymentCertificateSigningRequest -RegionName $regionName -FQDN $externalFQDN -RequestType SingleCSR -subject $subject -OutputRequestPath $OutputDirectory -IdentitySystem $IdentitySystem
54-
```
52+
```powershell
53+
New-AzsHubDeploymentCertificateSigningRequest -RegionName $regionName -FQDN $externalFQDN -RequestType SingleCSR -subject $subject -OutputRequestPath $OutputDirectory -IdentitySystem $IdentitySystem
54+
```

0 commit comments

Comments
 (0)