Skip to content

Commit 627ce7d

Browse files
authored
Merge pull request #250461 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 6a72e5c + 3c59ca7 commit 627ce7d

File tree

5 files changed

+6
-10
lines changed

5 files changed

+6
-10
lines changed

articles/active-directory/hybrid/prerequisites.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ For more information on the cloud sync accounts, and how to set up a custom gMSA
4949

5050
|Requirement|Description and more requirements|
5151
|-----|-----|
52-
|Windows server 2016 or greater (Windows Server 2022 not supported yet) that is or has:|• 4 GB RAM or more</br>• .NET 4.6.2 runtime or greater</br>• domain-joined</br>• PowerShell execution policy set to **RemoteSigned**</br>• TLS 1.2 enabled</br>• if federation is being used, the AD FS severs must be Windows Server 2012 R2 or higher and TLS/SSL certificates must be configured.|
52+
|Windows server 2016 or greater that is or has:|• 4 GB RAM or more</br>• .NET 4.6.2 runtime or greater</br>• domain-joined</br>• PowerShell execution policy set to **RemoteSigned**</br>• TLS 1.2 enabled</br>• if federation is being used, the AD FS severs must be Windows Server 2012 R2 or higher and TLS/SSL certificates must be configured.|
5353
|Active Directory|• On-premises AD that has a forest functional level 2003 or higher</br>• a writeable domain controller|
5454
|Azure AD tenant|• A tenant in Azure used to synchronize from on-premises|
5555
|SQL Server|Azure AD Connect requires a SQL Server database to store identity data. By default, a SQL Server 2019 Express LocalDB (a light version of SQL Server Express) is installed. For more information on using a SQL server, see [Azure AD Connect SQL server requirements](connect/how-to-connect-install-prerequisites.md#sql-server-used-by-azure-ad-connect)

articles/aks/node-access.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ To create an interactive shell connection to a Linux node, use the `kubectl debu
3333
The following example resembles output from the command:
3434

3535
```output
36-
NAME STATUS ROLES AGE VERSION INTERNAL-IP EXTERNAL-IP OS-IMAGE
37-
KERNEL-VERSION CONTAINER-RUNTIME
36+
NAME STATUS ROLES AGE VERSION INTERNAL-IP EXTERNAL-IP OS-IMAGE KERNEL-VERSION CONTAINER-RUNTIME
3837
aks-nodepool1-37663765-vmss000000 Ready agent 166m v1.25.6 10.224.0.33 <none> Ubuntu 22.04.2 LTS 5.15.0-1039-azure containerd://1.7.1+azure-1
3938
aks-nodepool1-37663765-vmss000001 Ready agent 166m v1.25.6 10.224.0.4 <none> Ubuntu 22.04.2 LTS 5.15.0-1039-azure containerd://1.7.1+azure-1
4039
aksnpwin000000 Ready agent 160m v1.25.6 10.224.0.62 <none> Windows Server 2022 Datacenter 10.0.20348.1787 containerd://1.6.21+azure

articles/azure-arc/kubernetes/tutorial-use-gitops-flux2.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,12 +497,13 @@ To view detailed conditions for a configuration object, select its name.
497497
Flux supports many parameters to enable various scenarios. For a description of all parameters that Flux supports, see the [official Flux documentation](https://fluxcd.io/docs/). Flux in Azure doesn't support all parameters yet. Let us know if a parameter you need is missing from the Azure implementation.
498498

499499
For more information about available parameters and how to use them, see [GitOps Flux v2 configurations with AKS and Azure Arc-enabled Kubernetes](conceptual-gitops-flux2.md#parameters).
500+
A workaround to deploy Flux resources with non-supported parameters is to define the required Flux custom resources inside your git repository. For example, [GitRepository](https://fluxcd.io/flux/components/source/gitrepositories/), [Kustomization](https://fluxcd.io/flux/components/kustomize/kustomization/), etcetera. Then deploy these resources with the `az k8s-configuration flux create` command. You will then still be able to access your Flux resources through the Azure Arc UI.
500501

501502
## Manage cluster configuration by using the Flux Kustomize controller
502503

503504
The [Flux Kustomize controller](https://fluxcd.io/docs/components/kustomize/) is installed as part of the `microsoft.flux` cluster extension. It allows the declarative management of cluster configuration and application deployment by using Kubernetes manifests synced from a Git repository. These Kubernetes manifests can optionally include a *kustomize.yaml* file.
504505

505-
For usage details, see the following resiyrces:
506+
For usage details, see the following resources:
506507

507508
* [Flux Kustomize controller](https://fluxcd.io/docs/components/kustomize/)
508509
* [Kustomize reference documents](https://kubectl.docs.kubernetes.io/references/kustomize/)

articles/azure-resource-manager/bicep/deployment-script-bicep.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,6 @@ resource runPowerShellInline 'Microsoft.Resources/deploymentScripts@2020-10-01'
134134
}
135135
```
136136

137-
> [!NOTE]
138-
> The example is for demonstration purposes. The properties `scriptContent` and `primaryScriptUri` can't coexist in a Bicep file.
139-
140-
> [!NOTE]
141-
> The _scriptContent_ shows a script with multiple lines. The Azure portal and Azure DevOps pipeline can't parse a deployment script with multiple lines. You can either chain the PowerShell commands (by using semicolons or _\\r\\n_ or _\\n_) into one line, or use the `primaryScriptUri` property with an external script file. There are many free JSON string escape/unescape tools available. For example, [https://www.freeformatter.com/json-escape.html](https://www.freeformatter.com/json-escape.html).
142-
143137
Property value details:
144138

145139
- `identity`: For deployment script API version 2020-10-01 or later, a user-assigned managed identity is optional unless you need to perform any Azure-specific actions in the script. For the API version 2019-10-01-preview, a managed identity is required as the deployment script service uses it to execute the scripts. When the identity property is specified, the script service calls `Connect-AzAccount -Identity` before invoking the user script. Currently, only user-assigned managed identity is supported. To login with a different identity, you can call [Connect-AzAccount](/powershell/module/az.accounts/connect-azaccount) in the script.

articles/governance/resource-graph/reference/supported-tables-resources.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -811,6 +811,8 @@ For sample queries for this table, see [Resource Graph sample queries for resour
811811
- microsoft.scvmm/virtualnetworks
812812
- microsoft.ScVmm/vmmServers (SCVMM management servers)
813813
- microsoft.Search/searchServices (Search services)
814+
- microsoft.security/apicollections
815+
- microsoft.security/apicollections/apiendpoints
814816
- microsoft.security/assignments
815817
- microsoft.security/automations
816818
- microsoft.security/customassessmentautomations

0 commit comments

Comments
 (0)