├── .DS_Store ├── .gitignore ├── AzureHttpdns └── Azure上通过Functions实现httpdns的简易思路.md ├── Azure上通过Functions实现httpdns的简易思路.md ├── BizApp-Lab ├── Build IT HelpDesk with BizApp Platform │ ├── Images │ │ └── OCS.png │ ├── LabManual │ │ └── 全渠道服务平台搭建Dynamics365+PVA+Teams+Bot Frameworkcomposer.pdf │ └── README.md ├── Build News Community with Power Platform │ ├── Images │ │ └── news_community.png │ ├── LabManual │ │ └── DevHack Hands-News Community.pdf │ └── README.md ├── D365 Users Onboarding Automation │ ├── Asset │ │ └── EnvironmentalManagement_1_0_0_1_managed.zip │ ├── Images │ │ ├── pic-1.png │ │ ├── pic-2.png │ │ ├── pic-3.png │ │ ├── pic-4.png │ │ ├── pic-5.png │ │ ├── pic-6.png │ │ ├── pic-7.png │ │ └── pic-8.png │ └── README.md ├── PP COE Starter Kit Deployment in 21V │ ├── Images │ │ ├── COE_PBI.png │ │ ├── Cheers_icon.gif │ │ ├── Envir_Url.png │ │ └── Envir_data.png │ ├── LabManual │ │ └── COE Deployment.pdf │ ├── README.md │ └── SolutionPackage │ │ └── CoEStarterKit.zip ├── PP&D365 CE Solution Deployment with Azure DevOps │ ├── Images │ │ ├── ALM.png │ │ ├── PP_Build_Tool.png │ │ └── Solution Pipeline.png │ ├── LabManual │ │ └── DevOps自动化部署PP及D365 CE Solution.pdf │ └── README.md └── 使用dataflow将外部数据加载到dataverse中 │ ├── Device-Order-Data.xlsx │ ├── Power Platform Dataflow Intro.pptx │ ├── README.md │ ├── 实验一:在 Powerapps中创建dataflow.md │ ├── 实验三:使用dataflow刷新数据时发送通知.md │ └── 实验二:在 Canvas app中测试 dataflow 刷新数据的效果.md ├── CODE_OF_CONDUCT.md ├── Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP ├── .DS_Store ├── .env ├── README.md ├── __pycache__ │ ├── app.cpython-310.pyc │ ├── gpt.cpython-310.pyc │ └── server.cpython-310.pyc ├── gpt.py ├── media │ ├── .DS_Store │ ├── 0.png │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ └── 9.png ├── requirements.txt ├── server.py └── static │ ├── css │ └── style.css │ ├── index.html │ └── script.js ├── HACluster ├── img │ ├── MySQL.png │ ├── lbrule.png │ └── result.png └── readme.md ├── HadoopWithTerraform ├── .gitignore ├── README.md ├── ansibleHD │ ├── install.sh │ ├── main.tf │ ├── playbook.yml │ └── provider.tf ├── ansibleHost │ ├── install.sh │ ├── main.tf │ ├── playbook.yml │ └── provider.tf ├── hdvm │ ├── install.sh │ ├── main.tf │ ├── playbook.yml │ └── provider.tf ├── hdvmss │ ├── main.tf │ ├── provider.tf │ └── test.sh ├── installhd.sh ├── keyvault │ └── keyvault.tf ├── modules │ ├── vmVnet │ │ ├── main.tf │ │ ├── output.tf │ │ ├── test.sh │ │ └── variables.tf │ ├── vmssVnet │ │ ├── main.tf │ │ ├── output.tf │ │ ├── providers.tf │ │ ├── test.sh │ │ └── variables.tf │ └── vnet │ │ ├── main.tf │ │ ├── output.tf │ │ ├── test.sh │ │ └── variables.tf ├── run.sh ├── test │ └── hello.tf ├── vm │ ├── main.tf │ ├── output.tf │ ├── providers.tf │ ├── variables.tf │ └── vm.zip ├── vmAnsible │ ├── hosts │ ├── main.tf │ ├── playbook.yml │ ├── provider.tf │ └── test.sh ├── vmModTest │ ├── install.sh │ ├── main.tf │ └── provider.tf └── vmN │ ├── main.tf │ ├── output.tf │ ├── providers.tf │ └── variables.tf ├── LICENSE ├── LandingZonesDeploymentwithTerraform ├── .DS_Store ├── LandingZonesDeploymentwithTerraform.md ├── README.md └── media │ ├── .DS_Store │ └── media │ ├── .DS_Store │ ├── image1.png │ ├── image10.png │ ├── image11.png │ ├── image12.png │ ├── image13.png │ ├── image14.png │ ├── image15.png │ ├── image16.png │ ├── image17.png │ ├── image18.png │ ├── image19.png │ ├── image2.png │ ├── image20.png │ ├── image21.png │ ├── image22.png │ ├── image23.png │ ├── image24.png │ ├── image25.png │ ├── image26.png │ ├── image27.png │ ├── image28.png │ ├── image29.png │ ├── image3.png │ ├── image30.png │ ├── image31.png │ ├── image4.png │ ├── image5.png │ ├── image6.png │ ├── image7.png │ ├── image8.png │ └── image9.png ├── MLopsInADay ├── MLOps-overview.pptx ├── README.md ├── data-batch-scoring │ ├── german_credit_data_batch_test_00.csv │ ├── german_credit_data_batch_test_01.csv │ ├── german_credit_data_batch_test_02.csv │ └── german_credit_data_batch_test_03.csv ├── data-training │ └── german_credit_data.csv ├── devops-common-files │ └── install_requirements.sh ├── devops-deploy-pipeline-with-tests │ ├── README.md │ ├── add_to_pipeline_endpoint.py │ ├── deploy-simple-pipeline-with-tests.yml │ ├── deploy_pipeline.py │ └── tests │ │ └── test_deployed_pipeline.py ├── devops-deploy-simple-pipeline │ ├── README.md │ ├── deploy-simple-pipeline.yml │ └── deploy_pipeline.py ├── media │ ├── deployment_pipeline.png │ ├── hyperdrive_example.png │ ├── mlops_overview.png │ ├── pipeline_overview.png │ ├── pipline_with_testing.png │ └── simple_pipeline.png ├── pipelines-parallel-run-step │ ├── README.md │ ├── model.pkl │ ├── parallel_run_step_pipeline.ipynb │ ├── parallel_runconfig.yml │ └── score_parallel.py ├── pipelines-single-training-step │ ├── README.md │ ├── conda.yml │ ├── single_step_pipeline.ipynb │ └── train.py └── python-model-deployment │ ├── README.md │ ├── conda.yml │ ├── deploy_model.ipynb │ ├── model.pkl │ └── score.py ├── PostgresqlWorkshop ├── PostgresqlWorkshop.md ├── README.md ├── bicep │ ├── architecture.png │ ├── architecture.vsdx │ ├── get_helm.sh │ ├── main.bicep │ └── modules │ │ ├── aks.bicep │ │ ├── networkinterface.bicep │ │ ├── networksecuritygroup.bicep │ │ ├── postgresql.fexible.bicep │ │ ├── privatednszone.bicep │ │ ├── publicip.bicep │ │ ├── storageAccount.bicep │ │ ├── virtualNetwork.peering.bicep │ │ ├── virtualmachine.bicep │ │ ├── virtualmachine.extension.bicep │ │ ├── virtualnetwork.bicep │ │ ├── virtualnetwork.subnet.bicep │ │ ├── vmconfig │ │ └── vmforpgmigration.json └── media │ ├── dns.png │ ├── image01.png │ ├── image1.png │ ├── image10.png │ ├── image11.png │ ├── image12.png │ ├── image13.png │ ├── image14.png │ ├── image15.png │ ├── image16.png │ ├── image17.png │ ├── image18.png │ ├── image19.png │ ├── image2.png │ ├── image20.png │ ├── image21.png │ ├── image22.png │ ├── image23.png │ ├── image24.png │ ├── image25.png │ ├── image26.png │ ├── image27.png │ ├── image4.png │ ├── image6.png │ ├── image7.png │ ├── image8.png │ ├── image9.png │ ├── image_3.png │ ├── image_LR.png │ ├── image_maintence_01.png │ ├── image_migra_01.png │ ├── image_migra_02.png │ ├── image_migra_03.png │ ├── image_migra_04.png │ ├── image_migra_05.png │ ├── image_migra_06.png │ ├── image_migra_07.png │ ├── image_migra_08.png │ ├── image_migra_14.png │ ├── image_migra_15.png │ ├── image_migra_16.png │ ├── image_migra_17.png │ ├── image_migra_18.png │ ├── image_migra_19.png │ ├── image_migra_19_1.png │ ├── image_migra_20.png │ ├── image_migra_21.png │ ├── image_migra_22.png │ ├── image_replica_01.png │ ├── image_replica_02.png │ ├── readme_image1.png │ ├── readme_image2.png │ └── storage_set.png ├── README.md ├── SECURITY.md ├── SQL2022-Devhack ├── Lab1 │ └── Azure Arc Enabled SQL Server.md ├── Lab2 │ └── Azure SQL Managed Instance Link feature.md ├── Lab3 │ ├── README.md │ └── img │ │ ├── ads-dc-connect.png │ │ ├── ads-newdeployment.png │ │ ├── ads-newmiarc.png │ │ ├── ads-newmiarc1.png │ │ ├── ads-newmiarc2.png │ │ ├── architecture.png │ │ ├── customLocation.png │ │ ├── dc-done.png │ │ ├── dc-new1.png │ │ ├── dc-new2.png │ │ ├── dc-new3.png │ │ ├── dc-new4.png │ │ ├── dc-new5.png │ │ ├── k8s-enable.png │ │ ├── mi-ads-overview.png │ │ ├── mi-connect.png │ │ ├── mi-connect2.png │ │ ├── mi-connect3.png │ │ ├── mi-trouble1.png │ │ ├── mi-trouble2.png │ │ ├── mi-trouble3.png │ │ ├── new-mi-portal.png │ │ ├── new-mi-portal0.png │ │ └── new-mi-portal1.png ├── Lab4 │ ├── README.md │ └── img │ │ ├── ads.sql.docker.png │ │ ├── ads.sql.docker2.png │ │ ├── ads.sql.docker3.png │ │ ├── ads.sql.docker4.png │ │ ├── link.status1.png │ │ ├── link1.png │ │ ├── link2.png │ │ └── sql.docker.png └── README.md ├── SUPPORT.md ├── Security-Log-Retention ├── Microsoft Sentinel Log Retention.pptx ├── README.md └── images │ ├── Sentinel-ADX-01.png │ ├── Sentinel-ADX-02.png │ ├── Sentinel-ADX-03.png │ ├── Sentinel-ADX-04.png │ ├── Sentinel-ADX-05.png │ ├── Sentinel-ADX-06.png │ ├── Sentinel-ADX-07.png │ ├── Sentinel-ADX-08.png │ ├── Sentinel-ADX-09.png │ ├── Sentinel-ADX-10.png │ ├── Sentinel-ADX-11.png │ ├── Sentinel-ADX-12.png │ ├── Sentinel-Cluster-01.png │ ├── Sentinel-Cluster-02.png │ ├── Sentinel-Cluster-03.png │ ├── Sentinel-Cluster-04.png │ ├── Sentinel-Cluster-05.png │ ├── Sentinel-Cluster-06.png │ ├── Sentinel-Dataexport-01.png │ ├── Sentinel-Dataexport-02.png │ ├── Sentinel-Dataexport-03.png │ ├── Sentinel-Dataexport-04.png │ ├── Sentinel-Dataexport-05.png │ ├── Sentinel-Dataexport-06.png │ ├── Sentinel-Huntine-01.png │ ├── Sentinel-Logic-01.png │ ├── Sentinel-Logic-02.png │ ├── Sentinel-Logic-03.png │ ├── Sentinel-Logic-04.png │ ├── Sentinel-Logic-05.png │ ├── Sentinel-Logic-06.png │ ├── Sentinel-Logic-07.png │ ├── Sentinel-Logic-08.png │ ├── Sentinel-Logic-09.png │ ├── Sentinel-Logic-10.png │ ├── Sentinel-Logic-11.png │ ├── Sentinel-Logic-12.png │ ├── Sentinel-Logic-13.png │ ├── Sentinel-Logic-14.png │ ├── Sentinel-Monitor-01.png │ ├── Sentinel-Monitor-02.png │ ├── Sentinel-Monitor-03.png │ ├── Sentinel-Pricing.png │ ├── Sentinel-Workspace-EventHub-01.png │ ├── Sentinel-Workspace-EventHub-02.png │ ├── Sentinel-Workspace-EventHub-03.png │ ├── Sentinel-Workspace-EventHub-04.png │ ├── Sentinel-Workspace-EventHub-05.png │ ├── Sentinel-Workspace-EventHub-06.png │ ├── Sentinel-Workspace-Restore-01.png │ ├── Sentinel-Workspace-Restore-02.png │ ├── Sentinel-Workspace-Restore-03.png │ ├── Sentinel-Workspace-Retention-01.png │ ├── Sentinel-Workspace-Retention-02.png │ ├── Sentinel-Workspace-Search-01.png │ ├── Sentinel-Workspace-Search-02.png │ ├── Sentinel-Workspace-Search-03.png │ ├── Sentinel-Workspace-Search-04.png │ ├── Sentinel-Workspace-Search-05.png │ ├── Sentinel-Workspace-Search-06.png │ ├── Sentinel-Workspace-Search-07.png │ ├── Sentinel-Workspace-Search-08.png │ ├── Sentinel-Workspace-Table-01.png │ ├── Sentinel-Workspace-Table-02.png │ ├── Sentinel-Workspace-Table-03.png │ ├── Sentinel-logicapp-01.png │ ├── Sentinel-logicapp-02.png │ └── Sentinel-logicapp-03.png └── 使用Auzre托管Prometheus和Grafana监控AKS ├── .DS_Store ├── README.md ├── media ├── image1.png ├── image10.png ├── image11.png ├── image12.png ├── image13.png ├── image14.png ├── image15.png ├── image16.png ├── image17.png ├── image18.png ├── image19.png ├── image2.png ├── image20.png ├── image21.png ├── image22.png ├── image3.png ├── image4.png ├── image5.png ├── image6.png ├── image7.png ├── image8.png └── image9.png ├── yaml └── azure-vote.yaml └── 使用Auzre Prometheus托管服务和Azure托管Grafana服务监控Azure Kubernetes Service.docx /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /AzureHttpdns/Azure上通过Functions实现httpdns的简易思路.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/AzureHttpdns/Azure上通过Functions实现httpdns的简易思路.md -------------------------------------------------------------------------------- /Azure上通过Functions实现httpdns的简易思路.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Azure上通过Functions实现httpdns的简易思路.md -------------------------------------------------------------------------------- /BizApp-Lab/Build IT HelpDesk with BizApp Platform/Images/OCS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/Build IT HelpDesk with BizApp Platform/Images/OCS.png -------------------------------------------------------------------------------- /BizApp-Lab/Build IT HelpDesk with BizApp Platform/LabManual/全渠道服务平台搭建Dynamics365+PVA+Teams+Bot Frameworkcomposer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/Build IT HelpDesk with BizApp Platform/LabManual/全渠道服务平台搭建Dynamics365+PVA+Teams+Bot Frameworkcomposer.pdf -------------------------------------------------------------------------------- /BizApp-Lab/Build IT HelpDesk with BizApp Platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/Build IT HelpDesk with BizApp Platform/README.md -------------------------------------------------------------------------------- /BizApp-Lab/Build News Community with Power Platform/Images/news_community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/Build News Community with Power Platform/Images/news_community.png -------------------------------------------------------------------------------- /BizApp-Lab/Build News Community with Power Platform/LabManual/DevHack Hands-News Community.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/Build News Community with Power Platform/LabManual/DevHack Hands-News Community.pdf -------------------------------------------------------------------------------- /BizApp-Lab/Build News Community with Power Platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/Build News Community with Power Platform/README.md -------------------------------------------------------------------------------- /BizApp-Lab/D365 Users Onboarding Automation/Asset/EnvironmentalManagement_1_0_0_1_managed.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/D365 Users Onboarding Automation/Asset/EnvironmentalManagement_1_0_0_1_managed.zip -------------------------------------------------------------------------------- /BizApp-Lab/D365 Users Onboarding Automation/Images/pic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/D365 Users Onboarding Automation/Images/pic-1.png -------------------------------------------------------------------------------- /BizApp-Lab/D365 Users Onboarding Automation/Images/pic-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/D365 Users Onboarding Automation/Images/pic-2.png -------------------------------------------------------------------------------- /BizApp-Lab/D365 Users Onboarding Automation/Images/pic-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/D365 Users Onboarding Automation/Images/pic-3.png -------------------------------------------------------------------------------- /BizApp-Lab/D365 Users Onboarding Automation/Images/pic-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/D365 Users Onboarding Automation/Images/pic-4.png -------------------------------------------------------------------------------- /BizApp-Lab/D365 Users Onboarding Automation/Images/pic-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/D365 Users Onboarding Automation/Images/pic-5.png -------------------------------------------------------------------------------- /BizApp-Lab/D365 Users Onboarding Automation/Images/pic-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/D365 Users Onboarding Automation/Images/pic-6.png -------------------------------------------------------------------------------- /BizApp-Lab/D365 Users Onboarding Automation/Images/pic-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/D365 Users Onboarding Automation/Images/pic-7.png -------------------------------------------------------------------------------- /BizApp-Lab/D365 Users Onboarding Automation/Images/pic-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/D365 Users Onboarding Automation/Images/pic-8.png -------------------------------------------------------------------------------- /BizApp-Lab/D365 Users Onboarding Automation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/D365 Users Onboarding Automation/README.md -------------------------------------------------------------------------------- /BizApp-Lab/PP COE Starter Kit Deployment in 21V/Images/COE_PBI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/PP COE Starter Kit Deployment in 21V/Images/COE_PBI.png -------------------------------------------------------------------------------- /BizApp-Lab/PP COE Starter Kit Deployment in 21V/Images/Cheers_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/PP COE Starter Kit Deployment in 21V/Images/Cheers_icon.gif -------------------------------------------------------------------------------- /BizApp-Lab/PP COE Starter Kit Deployment in 21V/Images/Envir_Url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/PP COE Starter Kit Deployment in 21V/Images/Envir_Url.png -------------------------------------------------------------------------------- /BizApp-Lab/PP COE Starter Kit Deployment in 21V/Images/Envir_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/PP COE Starter Kit Deployment in 21V/Images/Envir_data.png -------------------------------------------------------------------------------- /BizApp-Lab/PP COE Starter Kit Deployment in 21V/LabManual/COE Deployment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/PP COE Starter Kit Deployment in 21V/LabManual/COE Deployment.pdf -------------------------------------------------------------------------------- /BizApp-Lab/PP COE Starter Kit Deployment in 21V/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/PP COE Starter Kit Deployment in 21V/README.md -------------------------------------------------------------------------------- /BizApp-Lab/PP COE Starter Kit Deployment in 21V/SolutionPackage/CoEStarterKit.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/PP COE Starter Kit Deployment in 21V/SolutionPackage/CoEStarterKit.zip -------------------------------------------------------------------------------- /BizApp-Lab/PP&D365 CE Solution Deployment with Azure DevOps/Images/ALM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/PP&D365 CE Solution Deployment with Azure DevOps/Images/ALM.png -------------------------------------------------------------------------------- /BizApp-Lab/PP&D365 CE Solution Deployment with Azure DevOps/Images/PP_Build_Tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/PP&D365 CE Solution Deployment with Azure DevOps/Images/PP_Build_Tool.png -------------------------------------------------------------------------------- /BizApp-Lab/PP&D365 CE Solution Deployment with Azure DevOps/Images/Solution Pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/PP&D365 CE Solution Deployment with Azure DevOps/Images/Solution Pipeline.png -------------------------------------------------------------------------------- /BizApp-Lab/PP&D365 CE Solution Deployment with Azure DevOps/LabManual/DevOps自动化部署PP及D365 CE Solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/PP&D365 CE Solution Deployment with Azure DevOps/LabManual/DevOps自动化部署PP及D365 CE Solution.pdf -------------------------------------------------------------------------------- /BizApp-Lab/PP&D365 CE Solution Deployment with Azure DevOps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/PP&D365 CE Solution Deployment with Azure DevOps/README.md -------------------------------------------------------------------------------- /BizApp-Lab/使用dataflow将外部数据加载到dataverse中/Device-Order-Data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/使用dataflow将外部数据加载到dataverse中/Device-Order-Data.xlsx -------------------------------------------------------------------------------- /BizApp-Lab/使用dataflow将外部数据加载到dataverse中/Power Platform Dataflow Intro.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/使用dataflow将外部数据加载到dataverse中/Power Platform Dataflow Intro.pptx -------------------------------------------------------------------------------- /BizApp-Lab/使用dataflow将外部数据加载到dataverse中/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/使用dataflow将外部数据加载到dataverse中/README.md -------------------------------------------------------------------------------- /BizApp-Lab/使用dataflow将外部数据加载到dataverse中/实验一:在 Powerapps中创建dataflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/使用dataflow将外部数据加载到dataverse中/实验一:在 Powerapps中创建dataflow.md -------------------------------------------------------------------------------- /BizApp-Lab/使用dataflow将外部数据加载到dataverse中/实验三:使用dataflow刷新数据时发送通知.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/使用dataflow将外部数据加载到dataverse中/实验三:使用dataflow刷新数据时发送通知.md -------------------------------------------------------------------------------- /BizApp-Lab/使用dataflow将外部数据加载到dataverse中/实验二:在 Canvas app中测试 dataflow 刷新数据的效果.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/BizApp-Lab/使用dataflow将外部数据加载到dataverse中/实验二:在 Canvas app中测试 dataflow 刷新数据的效果.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/.DS_Store -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/.env -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/README.md -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/__pycache__/app.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/__pycache__/app.cpython-310.pyc -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/__pycache__/gpt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/__pycache__/gpt.cpython-310.pyc -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/__pycache__/server.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/__pycache__/server.cpython-310.pyc -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/gpt.py -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/.DS_Store -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/0.png -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/1.png -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/10.png -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/11.png -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/12.png -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/13.png -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/14.png -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/2.png -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/3.png -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/4.png -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/5.png -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/6.png -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/7.png -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/media/9.png -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | openai 3 | -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/server.py -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/static/css/style.css -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/static/index.html -------------------------------------------------------------------------------- /Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Create-A-ChatGPT-Bot-APP-and-Deploy-To-Azure-APP-Service-or-Teams-APP/static/script.js -------------------------------------------------------------------------------- /HACluster/img/MySQL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HACluster/img/MySQL.png -------------------------------------------------------------------------------- /HACluster/img/lbrule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HACluster/img/lbrule.png -------------------------------------------------------------------------------- /HACluster/img/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HACluster/img/result.png -------------------------------------------------------------------------------- /HACluster/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HACluster/readme.md -------------------------------------------------------------------------------- /HadoopWithTerraform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/.gitignore -------------------------------------------------------------------------------- /HadoopWithTerraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/README.md -------------------------------------------------------------------------------- /HadoopWithTerraform/ansibleHD/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/ansibleHD/install.sh -------------------------------------------------------------------------------- /HadoopWithTerraform/ansibleHD/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/ansibleHD/main.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/ansibleHD/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/ansibleHD/playbook.yml -------------------------------------------------------------------------------- /HadoopWithTerraform/ansibleHD/provider.tf: -------------------------------------------------------------------------------- 1 | provider "azurerm" { 2 | features {} 3 | } -------------------------------------------------------------------------------- /HadoopWithTerraform/ansibleHost/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/ansibleHost/install.sh -------------------------------------------------------------------------------- /HadoopWithTerraform/ansibleHost/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/ansibleHost/main.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/ansibleHost/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/ansibleHost/playbook.yml -------------------------------------------------------------------------------- /HadoopWithTerraform/ansibleHost/provider.tf: -------------------------------------------------------------------------------- 1 | provider "azurerm" { 2 | features {} 3 | } -------------------------------------------------------------------------------- /HadoopWithTerraform/hdvm/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/hdvm/install.sh -------------------------------------------------------------------------------- /HadoopWithTerraform/hdvm/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/hdvm/main.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/hdvm/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/hdvm/playbook.yml -------------------------------------------------------------------------------- /HadoopWithTerraform/hdvm/provider.tf: -------------------------------------------------------------------------------- 1 | provider "azurerm" { 2 | features {} 3 | } -------------------------------------------------------------------------------- /HadoopWithTerraform/hdvmss/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/hdvmss/main.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/hdvmss/provider.tf: -------------------------------------------------------------------------------- 1 | provider "azurerm" { 2 | features {} 3 | } -------------------------------------------------------------------------------- /HadoopWithTerraform/hdvmss/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/hdvmss/test.sh -------------------------------------------------------------------------------- /HadoopWithTerraform/installhd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/installhd.sh -------------------------------------------------------------------------------- /HadoopWithTerraform/keyvault/keyvault.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/keyvault/keyvault.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/modules/vmVnet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/modules/vmVnet/main.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/modules/vmVnet/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/modules/vmVnet/output.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/modules/vmVnet/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/modules/vmVnet/test.sh -------------------------------------------------------------------------------- /HadoopWithTerraform/modules/vmVnet/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/modules/vmVnet/variables.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/modules/vmssVnet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/modules/vmssVnet/main.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/modules/vmssVnet/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/modules/vmssVnet/output.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/modules/vmssVnet/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/modules/vmssVnet/providers.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/modules/vmssVnet/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/modules/vmssVnet/test.sh -------------------------------------------------------------------------------- /HadoopWithTerraform/modules/vmssVnet/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/modules/vmssVnet/variables.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/modules/vnet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/modules/vnet/main.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/modules/vnet/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/modules/vnet/output.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/modules/vnet/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/modules/vnet/test.sh -------------------------------------------------------------------------------- /HadoopWithTerraform/modules/vnet/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/modules/vnet/variables.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/run.sh -------------------------------------------------------------------------------- /HadoopWithTerraform/test/hello.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/test/hello.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/vm/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/vm/main.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/vm/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/vm/output.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/vm/providers.tf: -------------------------------------------------------------------------------- 1 | 2 | 3 | provider "azurerm" { 4 | features {} 5 | } -------------------------------------------------------------------------------- /HadoopWithTerraform/vm/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/vm/variables.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/vm/vm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/vm/vm.zip -------------------------------------------------------------------------------- /HadoopWithTerraform/vmAnsible/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/vmAnsible/hosts -------------------------------------------------------------------------------- /HadoopWithTerraform/vmAnsible/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/vmAnsible/main.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/vmAnsible/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/vmAnsible/playbook.yml -------------------------------------------------------------------------------- /HadoopWithTerraform/vmAnsible/provider.tf: -------------------------------------------------------------------------------- 1 | provider "azurerm" { 2 | features {} 3 | } -------------------------------------------------------------------------------- /HadoopWithTerraform/vmAnsible/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/vmAnsible/test.sh -------------------------------------------------------------------------------- /HadoopWithTerraform/vmModTest/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/vmModTest/install.sh -------------------------------------------------------------------------------- /HadoopWithTerraform/vmModTest/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/vmModTest/main.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/vmModTest/provider.tf: -------------------------------------------------------------------------------- 1 | provider "azurerm" { 2 | features {} 3 | } -------------------------------------------------------------------------------- /HadoopWithTerraform/vmN/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/vmN/main.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/vmN/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/vmN/output.tf -------------------------------------------------------------------------------- /HadoopWithTerraform/vmN/providers.tf: -------------------------------------------------------------------------------- 1 | 2 | 3 | provider "azurerm" { 4 | features {} 5 | } -------------------------------------------------------------------------------- /HadoopWithTerraform/vmN/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/HadoopWithTerraform/vmN/variables.tf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LICENSE -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/.DS_Store -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/LandingZonesDeploymentwithTerraform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/LandingZonesDeploymentwithTerraform.md -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/README.md -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/.DS_Store -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/.DS_Store -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image1.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image10.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image11.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image12.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image13.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image14.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image15.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image16.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image17.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image18.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image19.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image2.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image20.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image21.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image22.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image23.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image24.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image25.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image26.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image27.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image28.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image29.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image3.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image30.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image31.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image4.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image5.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image6.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image7.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image8.png -------------------------------------------------------------------------------- /LandingZonesDeploymentwithTerraform/media/media/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/LandingZonesDeploymentwithTerraform/media/media/image9.png -------------------------------------------------------------------------------- /MLopsInADay/MLOps-overview.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/MLOps-overview.pptx -------------------------------------------------------------------------------- /MLopsInADay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/README.md -------------------------------------------------------------------------------- /MLopsInADay/data-batch-scoring/german_credit_data_batch_test_00.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/data-batch-scoring/german_credit_data_batch_test_00.csv -------------------------------------------------------------------------------- /MLopsInADay/data-batch-scoring/german_credit_data_batch_test_01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/data-batch-scoring/german_credit_data_batch_test_01.csv -------------------------------------------------------------------------------- /MLopsInADay/data-batch-scoring/german_credit_data_batch_test_02.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/data-batch-scoring/german_credit_data_batch_test_02.csv -------------------------------------------------------------------------------- /MLopsInADay/data-batch-scoring/german_credit_data_batch_test_03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/data-batch-scoring/german_credit_data_batch_test_03.csv -------------------------------------------------------------------------------- /MLopsInADay/data-training/german_credit_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/data-training/german_credit_data.csv -------------------------------------------------------------------------------- /MLopsInADay/devops-common-files/install_requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/devops-common-files/install_requirements.sh -------------------------------------------------------------------------------- /MLopsInADay/devops-deploy-pipeline-with-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/devops-deploy-pipeline-with-tests/README.md -------------------------------------------------------------------------------- /MLopsInADay/devops-deploy-pipeline-with-tests/add_to_pipeline_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/devops-deploy-pipeline-with-tests/add_to_pipeline_endpoint.py -------------------------------------------------------------------------------- /MLopsInADay/devops-deploy-pipeline-with-tests/deploy-simple-pipeline-with-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/devops-deploy-pipeline-with-tests/deploy-simple-pipeline-with-tests.yml -------------------------------------------------------------------------------- /MLopsInADay/devops-deploy-pipeline-with-tests/deploy_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/devops-deploy-pipeline-with-tests/deploy_pipeline.py -------------------------------------------------------------------------------- /MLopsInADay/devops-deploy-pipeline-with-tests/tests/test_deployed_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/devops-deploy-pipeline-with-tests/tests/test_deployed_pipeline.py -------------------------------------------------------------------------------- /MLopsInADay/devops-deploy-simple-pipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/devops-deploy-simple-pipeline/README.md -------------------------------------------------------------------------------- /MLopsInADay/devops-deploy-simple-pipeline/deploy-simple-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/devops-deploy-simple-pipeline/deploy-simple-pipeline.yml -------------------------------------------------------------------------------- /MLopsInADay/devops-deploy-simple-pipeline/deploy_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/devops-deploy-simple-pipeline/deploy_pipeline.py -------------------------------------------------------------------------------- /MLopsInADay/media/deployment_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/media/deployment_pipeline.png -------------------------------------------------------------------------------- /MLopsInADay/media/hyperdrive_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/media/hyperdrive_example.png -------------------------------------------------------------------------------- /MLopsInADay/media/mlops_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/media/mlops_overview.png -------------------------------------------------------------------------------- /MLopsInADay/media/pipeline_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/media/pipeline_overview.png -------------------------------------------------------------------------------- /MLopsInADay/media/pipline_with_testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/media/pipline_with_testing.png -------------------------------------------------------------------------------- /MLopsInADay/media/simple_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/media/simple_pipeline.png -------------------------------------------------------------------------------- /MLopsInADay/pipelines-parallel-run-step/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/pipelines-parallel-run-step/README.md -------------------------------------------------------------------------------- /MLopsInADay/pipelines-parallel-run-step/model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/pipelines-parallel-run-step/model.pkl -------------------------------------------------------------------------------- /MLopsInADay/pipelines-parallel-run-step/parallel_run_step_pipeline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/pipelines-parallel-run-step/parallel_run_step_pipeline.ipynb -------------------------------------------------------------------------------- /MLopsInADay/pipelines-parallel-run-step/parallel_runconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/pipelines-parallel-run-step/parallel_runconfig.yml -------------------------------------------------------------------------------- /MLopsInADay/pipelines-parallel-run-step/score_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/pipelines-parallel-run-step/score_parallel.py -------------------------------------------------------------------------------- /MLopsInADay/pipelines-single-training-step/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/pipelines-single-training-step/README.md -------------------------------------------------------------------------------- /MLopsInADay/pipelines-single-training-step/conda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/pipelines-single-training-step/conda.yml -------------------------------------------------------------------------------- /MLopsInADay/pipelines-single-training-step/single_step_pipeline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/pipelines-single-training-step/single_step_pipeline.ipynb -------------------------------------------------------------------------------- /MLopsInADay/pipelines-single-training-step/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/pipelines-single-training-step/train.py -------------------------------------------------------------------------------- /MLopsInADay/python-model-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/python-model-deployment/README.md -------------------------------------------------------------------------------- /MLopsInADay/python-model-deployment/conda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/python-model-deployment/conda.yml -------------------------------------------------------------------------------- /MLopsInADay/python-model-deployment/deploy_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/python-model-deployment/deploy_model.ipynb -------------------------------------------------------------------------------- /MLopsInADay/python-model-deployment/model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/python-model-deployment/model.pkl -------------------------------------------------------------------------------- /MLopsInADay/python-model-deployment/score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/MLopsInADay/python-model-deployment/score.py -------------------------------------------------------------------------------- /PostgresqlWorkshop/PostgresqlWorkshop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/PostgresqlWorkshop.md -------------------------------------------------------------------------------- /PostgresqlWorkshop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/README.md -------------------------------------------------------------------------------- /PostgresqlWorkshop/bicep/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/bicep/architecture.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/bicep/architecture.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/bicep/architecture.vsdx -------------------------------------------------------------------------------- /PostgresqlWorkshop/bicep/get_helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/bicep/get_helm.sh -------------------------------------------------------------------------------- /PostgresqlWorkshop/bicep/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/bicep/main.bicep -------------------------------------------------------------------------------- /PostgresqlWorkshop/bicep/modules/aks.bicep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PostgresqlWorkshop/bicep/modules/networkinterface.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/bicep/modules/networkinterface.bicep -------------------------------------------------------------------------------- /PostgresqlWorkshop/bicep/modules/networksecuritygroup.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/bicep/modules/networksecuritygroup.bicep -------------------------------------------------------------------------------- /PostgresqlWorkshop/bicep/modules/postgresql.fexible.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/bicep/modules/postgresql.fexible.bicep -------------------------------------------------------------------------------- /PostgresqlWorkshop/bicep/modules/privatednszone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/bicep/modules/privatednszone.bicep -------------------------------------------------------------------------------- /PostgresqlWorkshop/bicep/modules/publicip.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/bicep/modules/publicip.bicep -------------------------------------------------------------------------------- /PostgresqlWorkshop/bicep/modules/storageAccount.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/bicep/modules/storageAccount.bicep -------------------------------------------------------------------------------- /PostgresqlWorkshop/bicep/modules/virtualNetwork.peering.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/bicep/modules/virtualNetwork.peering.bicep -------------------------------------------------------------------------------- /PostgresqlWorkshop/bicep/modules/virtualmachine.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/bicep/modules/virtualmachine.bicep -------------------------------------------------------------------------------- /PostgresqlWorkshop/bicep/modules/virtualmachine.extension.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/bicep/modules/virtualmachine.extension.bicep -------------------------------------------------------------------------------- /PostgresqlWorkshop/bicep/modules/virtualnetwork.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/bicep/modules/virtualnetwork.bicep -------------------------------------------------------------------------------- /PostgresqlWorkshop/bicep/modules/virtualnetwork.subnet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/bicep/modules/virtualnetwork.subnet.bicep -------------------------------------------------------------------------------- /PostgresqlWorkshop/bicep/modules/vmconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PostgresqlWorkshop/bicep/modules/vmforpgmigration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/bicep/modules/vmforpgmigration.json -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/dns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/dns.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image01.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image1.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image10.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image11.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image12.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image13.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image14.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image15.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image16.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image17.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image18.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image19.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image2.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image20.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image21.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image22.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image23.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image24.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image25.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image26.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image27.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image4.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image6.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image7.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image8.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image9.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_3.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_LR.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_maintence_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_maintence_01.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_migra_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_migra_01.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_migra_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_migra_02.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_migra_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_migra_03.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_migra_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_migra_04.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_migra_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_migra_05.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_migra_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_migra_06.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_migra_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_migra_07.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_migra_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_migra_08.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_migra_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_migra_14.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_migra_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_migra_15.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_migra_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_migra_16.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_migra_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_migra_17.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_migra_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_migra_18.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_migra_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_migra_19.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_migra_19_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_migra_19_1.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_migra_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_migra_20.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_migra_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_migra_21.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_migra_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_migra_22.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_replica_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_replica_01.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/image_replica_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/image_replica_02.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/readme_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/readme_image1.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/readme_image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/readme_image2.png -------------------------------------------------------------------------------- /PostgresqlWorkshop/media/storage_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/PostgresqlWorkshop/media/storage_set.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab1/Azure Arc Enabled SQL Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab1/Azure Arc Enabled SQL Server.md -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab2/Azure SQL Managed Instance Link feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab2/Azure SQL Managed Instance Link feature.md -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/README.md -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/ads-dc-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/ads-dc-connect.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/ads-newdeployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/ads-newdeployment.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/ads-newmiarc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/ads-newmiarc.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/ads-newmiarc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/ads-newmiarc1.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/ads-newmiarc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/ads-newmiarc2.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/architecture.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/customLocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/customLocation.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/dc-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/dc-done.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/dc-new1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/dc-new1.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/dc-new2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/dc-new2.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/dc-new3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/dc-new3.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/dc-new4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/dc-new4.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/dc-new5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/dc-new5.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/k8s-enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/k8s-enable.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/mi-ads-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/mi-ads-overview.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/mi-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/mi-connect.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/mi-connect2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/mi-connect2.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/mi-connect3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/mi-connect3.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/mi-trouble1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/mi-trouble1.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/mi-trouble2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/mi-trouble2.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/mi-trouble3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/mi-trouble3.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/new-mi-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/new-mi-portal.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/new-mi-portal0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/new-mi-portal0.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab3/img/new-mi-portal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab3/img/new-mi-portal1.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab4/README.md -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab4/img/ads.sql.docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab4/img/ads.sql.docker.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab4/img/ads.sql.docker2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab4/img/ads.sql.docker2.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab4/img/ads.sql.docker3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab4/img/ads.sql.docker3.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab4/img/ads.sql.docker4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab4/img/ads.sql.docker4.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab4/img/link.status1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab4/img/link.status1.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab4/img/link1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab4/img/link1.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab4/img/link2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab4/img/link2.png -------------------------------------------------------------------------------- /SQL2022-Devhack/Lab4/img/sql.docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/Lab4/img/sql.docker.png -------------------------------------------------------------------------------- /SQL2022-Devhack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SQL2022-Devhack/README.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /Security-Log-Retention/Microsoft Sentinel Log Retention.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/Microsoft Sentinel Log Retention.pptx -------------------------------------------------------------------------------- /Security-Log-Retention/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/README.md -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-ADX-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-ADX-01.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-ADX-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-ADX-02.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-ADX-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-ADX-03.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-ADX-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-ADX-04.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-ADX-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-ADX-05.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-ADX-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-ADX-06.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-ADX-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-ADX-07.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-ADX-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-ADX-08.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-ADX-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-ADX-09.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-ADX-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-ADX-10.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-ADX-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-ADX-11.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-ADX-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-ADX-12.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Cluster-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Cluster-01.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Cluster-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Cluster-02.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Cluster-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Cluster-03.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Cluster-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Cluster-04.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Cluster-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Cluster-05.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Cluster-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Cluster-06.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Dataexport-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Dataexport-01.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Dataexport-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Dataexport-02.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Dataexport-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Dataexport-03.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Dataexport-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Dataexport-04.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Dataexport-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Dataexport-05.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Dataexport-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Dataexport-06.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Huntine-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Huntine-01.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Logic-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Logic-01.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Logic-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Logic-02.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Logic-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Logic-03.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Logic-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Logic-04.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Logic-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Logic-05.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Logic-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Logic-06.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Logic-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Logic-07.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Logic-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Logic-08.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Logic-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Logic-09.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Logic-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Logic-10.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Logic-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Logic-11.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Logic-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Logic-12.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Logic-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Logic-13.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Logic-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Logic-14.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Monitor-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Monitor-01.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Monitor-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Monitor-02.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Monitor-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Monitor-03.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Pricing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Pricing.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-EventHub-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-EventHub-01.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-EventHub-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-EventHub-02.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-EventHub-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-EventHub-03.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-EventHub-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-EventHub-04.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-EventHub-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-EventHub-05.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-EventHub-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-EventHub-06.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-Restore-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-Restore-01.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-Restore-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-Restore-02.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-Restore-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-Restore-03.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-Retention-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-Retention-01.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-Retention-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-Retention-02.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-Search-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-Search-01.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-Search-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-Search-02.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-Search-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-Search-03.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-Search-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-Search-04.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-Search-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-Search-05.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-Search-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-Search-06.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-Search-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-Search-07.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-Search-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-Search-08.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-Table-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-Table-01.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-Table-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-Table-02.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-Workspace-Table-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-Workspace-Table-03.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-logicapp-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-logicapp-01.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-logicapp-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-logicapp-02.png -------------------------------------------------------------------------------- /Security-Log-Retention/images/Sentinel-logicapp-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/Security-Log-Retention/images/Sentinel-logicapp-03.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/.DS_Store -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/README.md -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image1.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image10.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image11.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image12.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image13.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image14.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image15.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image16.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image17.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image18.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image19.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image2.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image20.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image21.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image22.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image3.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image4.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image5.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image6.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image7.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image8.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/media/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/media/image9.png -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/yaml/azure-vote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/yaml/azure-vote.yaml -------------------------------------------------------------------------------- /使用Auzre托管Prometheus和Grafana监控AKS/使用Auzre Prometheus托管服务和Azure托管Grafana服务监控Azure Kubernetes Service.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/gps-csa-tech-stack/HEAD/使用Auzre托管Prometheus和Grafana监控AKS/使用Auzre Prometheus托管服务和Azure托管Grafana服务监控Azure Kubernetes Service.docx --------------------------------------------------------------------------------