├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ └── powershell-functions-unit-tests-on-pr.yml ├── CODE_OF_CONDUCT.md ├── Configuration ├── DataverseEnvironmentConfiguration.txt └── powerplatform-spn-template.json ├── LICENSE ├── Pipelines ├── Templates │ ├── create-powerplatform-environment-template.yml │ ├── create-powerplatform-service-endpoint-template.yml │ ├── delete-powerplatform-service-endpoint-template.yml │ ├── generate-powerplatform-environment-domainname-template.yml │ └── generate-powerplatform-environment-url-template.yml └── Utils │ ├── create-powerplatform-environment-and-service-endpoint.yml │ ├── delete-powerplatform-environment-and-service-endpoint.yml │ ├── delete-powerplatform-service-endpoint.yml │ └── powerplatform-service-connection-test.yml ├── README.md └── Scripts ├── New-DataverseEnvironment.ps1 └── Tests └── New-DataverseEnvironment.Tests.ps1 /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/powershell-functions-unit-tests-on-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/.github/workflows/powershell-functions-unit-tests-on-pr.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Configuration/DataverseEnvironmentConfiguration.txt: -------------------------------------------------------------------------------- 1 | location=france 2 | currencyName=EUR 3 | languageCode=1033 4 | templates=D365_Sales -------------------------------------------------------------------------------- /Configuration/powerplatform-spn-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/Configuration/powerplatform-spn-template.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipelines/Templates/create-powerplatform-environment-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/Pipelines/Templates/create-powerplatform-environment-template.yml -------------------------------------------------------------------------------- /Pipelines/Templates/create-powerplatform-service-endpoint-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/Pipelines/Templates/create-powerplatform-service-endpoint-template.yml -------------------------------------------------------------------------------- /Pipelines/Templates/delete-powerplatform-service-endpoint-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/Pipelines/Templates/delete-powerplatform-service-endpoint-template.yml -------------------------------------------------------------------------------- /Pipelines/Templates/generate-powerplatform-environment-domainname-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/Pipelines/Templates/generate-powerplatform-environment-domainname-template.yml -------------------------------------------------------------------------------- /Pipelines/Templates/generate-powerplatform-environment-url-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/Pipelines/Templates/generate-powerplatform-environment-url-template.yml -------------------------------------------------------------------------------- /Pipelines/Utils/create-powerplatform-environment-and-service-endpoint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/Pipelines/Utils/create-powerplatform-environment-and-service-endpoint.yml -------------------------------------------------------------------------------- /Pipelines/Utils/delete-powerplatform-environment-and-service-endpoint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/Pipelines/Utils/delete-powerplatform-environment-and-service-endpoint.yml -------------------------------------------------------------------------------- /Pipelines/Utils/delete-powerplatform-service-endpoint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/Pipelines/Utils/delete-powerplatform-service-endpoint.yml -------------------------------------------------------------------------------- /Pipelines/Utils/powerplatform-service-connection-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/Pipelines/Utils/powerplatform-service-connection-test.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/New-DataverseEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/Scripts/New-DataverseEnvironment.ps1 -------------------------------------------------------------------------------- /Scripts/Tests/New-DataverseEnvironment.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Platform-DevOps/Power-Platform-ALM-Starter-Kit/HEAD/Scripts/Tests/New-DataverseEnvironment.Tests.ps1 --------------------------------------------------------------------------------