├── .devcontainer └── devcontainer.json ├── .gitattributes ├── .github └── workflows │ ├── deploy.yml │ ├── provision_and_deploy.yml │ └── temp.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── LICENSE ├── NOTICE.txt ├── README.md ├── azure.yaml ├── bicepconfig.json ├── hooks ├── postdeploy.ps1 ├── postprovision.ps1 └── predeploy.ps1 ├── images └── architecture.png ├── infra ├── abbreviations.json ├── core │ ├── host │ │ ├── appservice-appsettings.bicep │ │ ├── appservice.bicep │ │ ├── appserviceplan.bicep │ │ └── functions.bicep │ ├── monitor │ │ ├── applicationinsights-dashboard.bicep │ │ ├── applicationinsights.bicep │ │ ├── loganalytics.bicep │ │ └── monitoring.bicep │ ├── network │ │ ├── privatelink.bicep │ │ └── vnet.bicep │ └── storage │ │ └── storage-account.bicep ├── main.bicep └── main.bicepparam └── src ├── .gitignore ├── FunctionSettings.cs ├── Functions └── PowerAppsFunction.cs ├── Models └── WebAPIGetExample.cs ├── OpenApiConfigurationOptions.cs ├── PowerAppsManagedIdentityDemoFunctions.csproj ├── PowerAppsManagedIdentityDemoFunctions.sln ├── Properties ├── serviceDependencies.json └── serviceDependencies.local.json ├── Startup.cs ├── host.json └── local.settings.json /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/provision_and_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/.github/workflows/provision_and_deploy.yml -------------------------------------------------------------------------------- /.github/workflows/temp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/.github/workflows/temp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/README.md -------------------------------------------------------------------------------- /azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/azure.yaml -------------------------------------------------------------------------------- /bicepconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/bicepconfig.json -------------------------------------------------------------------------------- /hooks/postdeploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/hooks/postdeploy.ps1 -------------------------------------------------------------------------------- /hooks/postprovision.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/hooks/postprovision.ps1 -------------------------------------------------------------------------------- /hooks/predeploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/hooks/predeploy.ps1 -------------------------------------------------------------------------------- /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/images/architecture.png -------------------------------------------------------------------------------- /infra/abbreviations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/infra/abbreviations.json -------------------------------------------------------------------------------- /infra/core/host/appservice-appsettings.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/infra/core/host/appservice-appsettings.bicep -------------------------------------------------------------------------------- /infra/core/host/appservice.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/infra/core/host/appservice.bicep -------------------------------------------------------------------------------- /infra/core/host/appserviceplan.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/infra/core/host/appserviceplan.bicep -------------------------------------------------------------------------------- /infra/core/host/functions.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/infra/core/host/functions.bicep -------------------------------------------------------------------------------- /infra/core/monitor/applicationinsights-dashboard.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/infra/core/monitor/applicationinsights-dashboard.bicep -------------------------------------------------------------------------------- /infra/core/monitor/applicationinsights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/infra/core/monitor/applicationinsights.bicep -------------------------------------------------------------------------------- /infra/core/monitor/loganalytics.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/infra/core/monitor/loganalytics.bicep -------------------------------------------------------------------------------- /infra/core/monitor/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/infra/core/monitor/monitoring.bicep -------------------------------------------------------------------------------- /infra/core/network/privatelink.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/infra/core/network/privatelink.bicep -------------------------------------------------------------------------------- /infra/core/network/vnet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/infra/core/network/vnet.bicep -------------------------------------------------------------------------------- /infra/core/storage/storage-account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/infra/core/storage/storage-account.bicep -------------------------------------------------------------------------------- /infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/infra/main.bicep -------------------------------------------------------------------------------- /infra/main.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/infra/main.bicepparam -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/FunctionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/src/FunctionSettings.cs -------------------------------------------------------------------------------- /src/Functions/PowerAppsFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/src/Functions/PowerAppsFunction.cs -------------------------------------------------------------------------------- /src/Models/WebAPIGetExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/src/Models/WebAPIGetExample.cs -------------------------------------------------------------------------------- /src/OpenApiConfigurationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/src/OpenApiConfigurationOptions.cs -------------------------------------------------------------------------------- /src/PowerAppsManagedIdentityDemoFunctions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/src/PowerAppsManagedIdentityDemoFunctions.csproj -------------------------------------------------------------------------------- /src/PowerAppsManagedIdentityDemoFunctions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/src/PowerAppsManagedIdentityDemoFunctions.sln -------------------------------------------------------------------------------- /src/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/src/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /src/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/src/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /src/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/src/Startup.cs -------------------------------------------------------------------------------- /src/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/src/host.json -------------------------------------------------------------------------------- /src/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajyraman/PowerApps-Managed-Identity-Demo-Functions/HEAD/src/local.settings.json --------------------------------------------------------------------------------