Skip to content

Commit c243c0b

Browse files
committed
Addressed blocking issues in the TOC
1 parent ae1b4d8 commit c243c0b

2 files changed

Lines changed: 4 additions & 32 deletions

File tree

articles/azure-functions/TOC.yml

Lines changed: 2 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -180,31 +180,7 @@
180180
- name: TypeScript
181181
href: /samples/browse/?products=azure-functions&languages=typescript
182182
- name: Azure CLI
183-
items:
184-
- name: CLI sample index
185-
href: functions-cli-samples.md
186-
- name: Create function app
187-
items:
188-
- name: Serverless function app
189-
href: ./scripts/functions-cli-create-serverless.md
190-
- name: Serverless Python app
191-
href: ./scripts/functions-cli-create-serverless-python.md
192-
- name: Scalable Premium plan app
193-
href: ./scripts/functions-cli-create-premium-plan.md
194-
- name: Dedicated (App Service) plan app
195-
href: ./scripts/functions-cli-create-app-service-plan.md
196-
- name: Integrate services
197-
items:
198-
- name: Connect Azure Storage
199-
href: ./scripts/functions-cli-create-function-app-connect-to-storage-account.md
200-
- name: Connect Azure Cosmos DB
201-
href: ./scripts/functions-cli-create-function-app-connect-to-cosmos-db.md
202-
- name: Python mount Files share
203-
href: ./scripts/functions-cli-mount-files-storage-linux.md
204-
- name: Continuous deployment
205-
items:
206-
- name: GitHub deployment
207-
href: ./scripts/functions-cli-create-function-app-github-continuous.md
183+
href: functions-cli-samples.md
208184
- name: Azure PowerShell
209185
href: create-resources-azure-powershell.md
210186
- name: Concepts
@@ -393,7 +369,7 @@
393369
href: functions-create-function-app-portal.md
394370
- name: Azure CLI
395371
displayName: create function app
396-
href: ./scripts/functions-cli-create-serverless.md
372+
href: how-to-create-function-azure-cli.md
397373
- name: Create functions
398374
items:
399375
- name: HTTP trigger
@@ -402,10 +378,6 @@
402378
href: functions-create-http-endpoint.md
403379
- name: Kotlin using IntelliJ
404380
href: functions-create-maven-kotlin-intellij.md
405-
- name: Consumption plan
406-
href: ./scripts/functions-cli-create-app-service-plan.md
407-
- name: Premium plan
408-
href: ./scripts/functions-cli-create-premium-plan.md
409381
- name: Linux container (Premium)
410382
displayName: container, Docker, custom
411383
href: functions-deploy-container.md

articles/azure-functions/functions-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ If you're configuring `AzureWebJobsStorage` using a storage account that uses th
346346

347347
#### Connecting to a resource in another tenant
348348

349-
If your function needs to connect to a resource in a different Microsoft Entra tenant, your connection needs to use a _federated identity credential_. This requires a user-assigned managed identity and a multi-tenant Entra ID app registration. You cannot use a system-assigned managed identity for cross-tenant connections.
349+
If your function needs to connect to a resource in a different Microsoft Entra tenant, your connection needs to use a _federated identity credential_. This requires a user-assigned managed identity and a multitenant Entra ID app registration. You cannot use a system-assigned managed identity for cross-tenant connections.
350350

351351
> [!IMPORTANT]
352352
> When you configure a trigger for a cross-tenant connection in the Consumption or Flex Consumption plan types, the platform no longer scales the function app based on that trigger.
@@ -355,7 +355,7 @@ To configure a cross-tenant identity-based connection, you first need to set up
355355

356356
1. In the tenant where your function app is deployed, [create a new user-assigned managed identity](/entra/identity/managed-identities-azure-resources/how-manage-user-assigned-managed-identities#create-a-user-assigned-managed-identity).
357357
1. [Assign that identity](../app-service/overview-managed-identity.md?toc=%2Fazure%2Fazure-functions%2Ftoc.json#add-a-user-assigned-identity) to the function app.
358-
1. In the same tenant, [create a multi-tenant Entra app registration](/entra/workload-id/workload-identity-federation-config-app-trust-managed-identity#configure-a-multi-tenant-app-registration) that represents the cross-tenant resource you want to access.
358+
1. In the same tenant, [create a multitenant Entra app registration](/entra/workload-id/workload-identity-federation-config-app-trust-managed-identity#configure-a-multi-tenant-app-registration) that represents the cross-tenant resource you want to access.
359359
1. [Add the managed identity as a federated identity credential for the app registration.](/entra/workload-id/workload-identity-federation-config-app-trust-managed-identity)
360360
1. In the tenant where the resource is deployed, [create an enterprise application for the app registration](/entra/identity/enterprise-apps/create-service-principal-cross-tenant).
361361
1. Assign permissions for the enterprise application to access the resource.

0 commit comments

Comments
 (0)