Skip to content

Commit cc1d286

Browse files
authored
Merge pull request #221224 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 9bcf6fb + 1733811 commit cc1d286

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

articles/active-directory/conditional-access/terms-of-use.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -385,8 +385,8 @@ A: On the Terms of use blade, select the number under **Accepted**. You can also
385385
**Q: How long is information stored?**<br />
386386
A: The user counts in the terms of use report and who accepted/declined are stored for the life of the terms of use. The Azure AD audit logs are stored for 30 days.
387387

388-
**Q: Why do I see a different number of consents in the terms of use report vs. the Azure AD audit logs?**<br />
389-
A: The terms of use report is stored for the lifetime of that terms of use policy, while the Azure AD audit logs are stored for 30 days. Also, the terms of use report only displays the users current consent state. For example, if a user declines and then accepts, the terms of use report will only show that user's accept. If you need to see the history, you can use the Azure AD audit logs.
388+
**Q: Why do I see a different number of consents in the terms of use details overview versus the exported CSV report?**<br />
389+
A: The terms of use details overview reflects aggregated acceptances of the current version of the policy (updated once every day). If expiration is enabled or a TOU agreement is updated (with re-acceptance required), the count on the details overview is reset since the acceptances are expired, thereby showing the count of the current version. All acceptance history is still captured in the CSV report.
390390

391391
**Q: If hyperlinks are in the terms of use policy PDF document, will end users be able to click them?**<br />
392392
A: Yes, end users are able to select hyperlinks to other pages but links to sections within the document aren't supported. Also, hyperlinks in terms of use policy PDFs don't work when accessed from the Azure AD MyApps/MyAccount portal.

articles/api-management/how-to-deploy-self-hosted-gateway-kubernetes.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,26 @@ This article describes the steps for deploying the self-hosted gateway component
3535
5. Select the **Kubernetes** tab under **Deployment scripts**.
3636
6. Select the **\<gateway-name\>.yml** file link and download the YAML file.
3737
7. Select the **copy** icon at the lower-right corner of the **Deploy** text box to save the `kubectl` commands to the clipboard.
38-
8. Paste commands to the terminal (or command) window. The first command creates a Kubernetes secret that contains the access token generated in step 4. The second command applies the configuration file downloaded in step 6 to the Kubernetes cluster and expects the file to be in the current directory.
38+
8. When using Azure Kubernetes Service (AKS), run `az aks get-credentials --resource-group <resource-group-name> --name <resource-name> --admin` in a new terminal session.
3939
9. Run the commands to create the necessary Kubernetes objects in the [default namespace](https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/) and start self-hosted gateway pods from the [container image](https://aka.ms/apim/shgw/registry-portal) downloaded from the Microsoft Artifact Registry.
40+
- The first step creates a Kubernetes secret that contains the access token generated in step 4. Next, it creates a Kubernetes deployment for the self-hosted gateway which uses a ConfigMap with the configuration of the gateway.
4041
10. Run the following command to check if the deployment succeeded. Note that it might take a little time for all the objects to be created and for the pods to initialize.
4142

4243
```console
4344
kubectl get deployments
44-
NAME READY UP-TO-DATE AVAILABLE AGE
45+
```
46+
It should return
47+
```console
48+
NAME READY UP-TO-DATE AVAILABLE AGE
4549
<gateway-name> 1/1 1 1 18s
4650
```
4751
11. Run the following command to check if the service was successfully created. Note that your service IPs and ports will be different.
4852

4953
```console
5054
kubectl get services
55+
```
56+
It should return
57+
```console
5158
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
5259
<gateway-name> LoadBalancer 10.99.236.168 <pending> 80:31620/TCP,443:30456/TCP 9m1s
5360
```

articles/container-apps/dapr-github-actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Replace \<Placeholders\> with your values.
6262
```powershell
6363
$ResourceGroup="my-containerapp-store"
6464
$Location="canadacentral"
65-
$GithubUsername="<GithubUsername>"
65+
$GitHubUsername="<GitHubUsername>"
6666
$SubscriptionId="<SubscriptionId>"
6767
```
6868

@@ -117,7 +117,7 @@ Now that you've validated your Azure CLI setup, bring the application code to yo
117117
# [PowerShell](#tab/powershell)
118118
119119
```git
120-
git clone https://github.com/$GithubUsername/container-apps-store-api-microservice.git
120+
git clone https://github.com/$GitHubUsername/container-apps-store-api-microservice.git
121121
```
122122
123123
---

articles/cost-management-billing/costs/enable-tag-inheritance.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Let's look at an example of how a resource tag gets applied. In the following di
6363

6464
Let's look at another example where a resource tag gets overridden. In the following diagram, resource 4 and resource group 2 have the same tag: **App**. Because the user chose to use the resource group or subscription tag, usage record 4 is updated with the resource group tag value, which is *backend*.
6565

66-
:::image type="content" source="./media/enable-tag-inheritance/tag-example-03.svg" alt-text="Example diagram showing how a resource tag gets overridden." border="false":::
66+
:::image type="content" source="./media/enable-tag-inheritance/tag-example-03.svg" alt-text="Example diagram showing how a resource tag gets overridden." border="false" lightbox="./media/enable-tag-inheritance/tag-example-03.svg":::
6767

6868
## Usage record updates
6969

@@ -93,4 +93,4 @@ You can also view the inherited tags by downloading your Azure usage. For more i
9393

9494
## Next steps
9595

96-
- Learn how to [split shared costs](allocate-costs.md).
96+
- Learn how to [split shared costs](allocate-costs.md).

0 commit comments

Comments
 (0)