This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Terraform version 0.13 | |
| # variables | |
| variable "apis" { | |
| type = map | |
| default = { | |
| conferenceApi = { | |
| name = "conference-api" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <policies> | |
| <inbound> | |
| <base /> | |
| <rate-limit calls="30" renewal-period="10" /> | |
| </inbound> | |
| <backend> | |
| <base /> | |
| </backend> | |
| <outbound> | |
| <base /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Duration twelveHourTimeout = Duration.ofHours(12); | |
| DirectConnectionConfig connectionConfig = new DirectConnectionConfig(); | |
| connectionConfig.setIdleConnectionTimeout(twelveHourTimeout); | |
| connectionConfig.setIdleEndpointTimeout(twelveHourTimeout); | |
| client = new CosmosClientBuilder() | |
| .endpoint(AccountSettings.HOST) | |
| .key(AccountSettings.MASTER_KEY) | |
| .consistencyLevel(ConsistencyLevel.EVENTUAL) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <policies> | |
| <inbound> | |
| <check-header name="X-Azure-FDID" failed-check-httpcode="403" failed-check-error-message="" ignore-case="true"> | |
| <value>475128ed-cf0a-494d-8178-cc2580e9e5d9</value> | |
| </check-header> | |
| </inbound> | |
| <backend> | |
| <forward-request /> | |
| </backend> | |
| <outbound /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| authsettingsv2_list_url="https://management.azure.com/subscriptions/<subscription_id>/resourceGroups/<group_name>/providers/Microsoft.Web/sites/<site_name>/config/authsettingsv2/list?api-version=2020-09-01" | |
| authsettingsv2_url="https://management.azure.com/subscriptions/<subscription_id>/resourceGroups/<group_name>/providers/Microsoft.Web/sites/<site_name>/config/authsettingsv2?api-version=2020-09-01" | |
| az rest --method GET --url $authsettings_list_url > authsettingsv2_list_url.json | |
| // modify json | |
| az rest --method PUT --url authsettingsv2_url --body @./authsettingsv2.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func_name=<the name of the function app> | |
| # global id for Microsoft Graph | |
| graph_name=00000003-0000-0000-c000-000000000000 | |
| graph_id=$(az ad sp show --id 00000003-0000-0000-c000-000000000000 --query id -o tsv) | |
| managed_identity=$(az ad sp list --display-name $func_name --query '[0]' -o json) | |
| mi_object_id=$(echo $managed_identity | jq .id -r) | |
| mi_app_id=$(echo $managed_identity | jq .appId -r) |
OlderNewer