├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── ai-engineer-deploying-solutions ├── module-containers │ ├── aci │ │ ├── scripts │ │ │ ├── createTFRemoteState.sh │ │ │ └── deployAciSolution.sh │ │ └── terraform │ │ │ ├── azure-aci.tf │ │ │ ├── azure-rg.tf │ │ │ └── main.tf │ └── aks │ │ ├── scripts │ │ ├── createTFRemoteState.sh │ │ └── deployAksSolution.sh │ │ ├── terraform │ │ ├── azure-aks.tf │ │ ├── azure-loganalytics.tf │ │ ├── azure-network.tf │ │ ├── azure-rbac.tf │ │ ├── azure-rg.tf │ │ ├── azuread-sp.tf │ │ ├── main.tf │ │ ├── output.tf │ │ └── ssh.tf │ │ └── voting-app │ │ └── azure-vote.yaml ├── module-deploy │ ├── arm │ │ ├── aml │ │ │ └── azureDeploy.json │ │ └── scripts │ │ │ └── deployAml.sh │ └── cli │ │ ├── deployAMLAdvanced.sh │ │ └── deployAMLBasic.sh ├── module-iot │ ├── scripts │ │ ├── createTFRemoteState.sh │ │ └── deployIotSolution.sh │ ├── solution │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── assets │ │ │ ├── CommunicationPatterns.png │ │ │ ├── CustomVisionOnRPiDemo.png │ │ │ ├── IoTEdgeDeployment.gif │ │ │ └── VSCodeExtensionVideo.png │ │ ├── deployment.template.json │ │ ├── deployment.test-amd64.template.json │ │ └── modules │ │ │ ├── CameraCapture │ │ │ ├── README.md │ │ │ ├── amd64.Dockerfile │ │ │ ├── app │ │ │ │ ├── AnnotationParser.py │ │ │ │ ├── CameraCapture.py │ │ │ │ ├── ImageServer.py │ │ │ │ ├── VideoStream.py │ │ │ │ ├── main.py │ │ │ │ └── templates │ │ │ │ │ └── index.html │ │ │ ├── arm32v7.Dockerfile │ │ │ ├── build │ │ │ │ ├── amd64-requirements.txt │ │ │ │ └── arm32v7-requirements.txt │ │ │ ├── module.json │ │ │ ├── test-amd64.Dockerfile │ │ │ ├── test-arm32v7.Dockerfile │ │ │ └── test │ │ │ │ ├── AppleAndBanana.mp4 │ │ │ │ ├── IntegrationTests.py │ │ │ │ └── UnitTests.py │ │ │ ├── ImageClassifierService │ │ │ ├── amd64.Dockerfile │ │ │ ├── app │ │ │ │ ├── app.py │ │ │ │ ├── apples and bananas model │ │ │ │ │ ├── labels.txt │ │ │ │ │ └── model.pb │ │ │ │ ├── fruits model │ │ │ │ │ ├── labels.txt │ │ │ │ │ └── model.pb │ │ │ │ ├── labels.txt │ │ │ │ ├── model.pb │ │ │ │ └── predict.py │ │ │ ├── arm32v7.Dockerfile │ │ │ ├── build │ │ │ │ ├── amd64-requirements.txt │ │ │ │ └── arm32v7-requirements.txt │ │ │ ├── module.json │ │ │ └── readme.txt │ │ │ └── SenseHatDisplay │ │ │ ├── app │ │ │ ├── DisplayManager.py │ │ │ ├── MessageParser.py │ │ │ └── main.py │ │ │ ├── arm32v7.Dockerfile │ │ │ ├── build │ │ │ └── arm32v7-requirements.txt │ │ │ ├── module.json │ │ │ └── test │ │ │ ├── IntegrationTests.py │ │ │ ├── UnitTests.py │ │ │ └── test-arm32v7.Dockerfile │ └── terraform │ │ ├── azure-bastion.tf │ │ ├── azure-customvision.tf │ │ ├── azure-iot.tf │ │ ├── azure-keyvault.tf │ │ ├── azure-network.tf │ │ ├── azure-storage.tf │ │ ├── azure-vm.tf │ │ ├── main.tf │ │ ├── scripts │ │ └── registerEdgeDevice.sh │ │ └── vars.tf └── module-keyvault │ ├── deployKeyVault.sh │ └── manageStorageKeys.sh ├── azure-devops-kubernetes-infrastructure ├── module-application │ ├── README.md │ └── sock-shop │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── requirements.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── cart-db-dep.yaml │ │ ├── cart-db-svc.yaml │ │ ├── carts-dep.yaml │ │ ├── carts-svc.yaml │ │ ├── catalogue-db-dep.yaml │ │ ├── catalogue-db-svc.yaml │ │ ├── catalogue-dep.yaml │ │ ├── catalogue-svc.yaml │ │ ├── front-end-dep.yaml │ │ ├── front-end-svc.yaml │ │ ├── ingress.yaml │ │ ├── loadtest-dep.yaml │ │ ├── orders-db-dep.yaml │ │ ├── orders-db-svc.yaml │ │ ├── orders-dep.yaml │ │ ├── orders-svc.yaml │ │ ├── payment-dep.yaml │ │ ├── payment-svc.yaml │ │ ├── queue-master-dep.yaml │ │ ├── queue-master-svc.yaml │ │ ├── rabbitmq-dep.yaml │ │ ├── rabbitmq-svc.yaml │ │ ├── session-db-dep.yaml │ │ ├── session-db-svc.yaml │ │ ├── shipping-dep.yaml │ │ ├── shipping-svc.yaml │ │ ├── user-db-dep.yaml │ │ ├── user-db-svc.yaml │ │ ├── user-dep.yaml │ │ ├── user-svc.yaml │ │ ├── zipkin-cron-dep.yaml │ │ ├── zipkin-dep.yaml │ │ ├── zipkin-mysql-dep.yaml │ │ ├── zipkin-mysql-svc.yaml │ │ └── zipkin-svc.yaml │ │ └── values.yaml ├── module-deploy │ ├── README.md │ ├── arm │ │ └── logAnalytics │ │ │ └── azureDeploy.json │ └── scripts │ │ └── deployAks.sh └── module-terraform │ ├── README.md │ ├── scripts │ ├── createTFRemoteState.sh │ └── deployAksSolution.sh │ └── terraform │ ├── azure-aks.tf │ ├── azure-loganalytics.tf │ ├── azure-network.tf │ ├── azure-rbac.tf │ ├── azure-rg.tf │ ├── azuread-sp.tf │ ├── main.tf │ ├── output.tf │ └── vars.tf ├── azure-resource-manager-deep-dive ├── Deploy-IaasSolution.ps1 ├── Deploy-NestedSolution.ps1 ├── Deploy-PaasSolution.ps1 ├── Deploy-SimpleIaas.ps1 ├── Deploy-SimplePaas.ps1 ├── iaasDeploy.json ├── nested │ ├── azureDeploy.json │ ├── azureDeploy.parameters.json │ └── shared │ │ ├── networkInterface.json │ │ ├── publicIP.json │ │ ├── storageAccount.json │ │ ├── virtualMachine.json │ │ └── virtualNetwork.json ├── paasDeploy.json └── paasDeploy_v2.json ├── chef-fluency ├── azure │ ├── README.md │ ├── scripts │ │ ├── createTFRemoteState.sh │ │ └── deploySolution.sh │ └── terraform │ │ ├── azure-bastion.tf │ │ ├── azure-keyvault.tf │ │ ├── azure-network.tf │ │ ├── azure-rg.tf │ │ ├── azure-storage.tf │ │ ├── azure-vm-extensions.tf │ │ ├── azure-vm.tf │ │ ├── main.tf │ │ ├── output.tf │ │ └── vars.tf └── chef-repo │ ├── .chef-repo.txt │ ├── .chef │ └── chef_guid │ ├── README.md │ ├── chefignore │ ├── cookbooks │ ├── README.md │ ├── base-linux │ │ ├── .delivery │ │ │ └── project.toml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Policyfile.rb │ │ ├── README.md │ │ ├── chefignore │ │ ├── kitchen.yml │ │ ├── metadata.rb │ │ ├── recipes │ │ │ └── default.rb │ │ ├── spec │ │ │ ├── spec_helper.rb │ │ │ └── unit │ │ │ │ └── recipes │ │ │ │ └── default_spec.rb │ │ └── test │ │ │ └── integration │ │ │ └── default │ │ │ └── default_test.rb │ ├── helloworld │ │ ├── .gitignore │ │ ├── .kitchen.yml │ │ ├── Berksfile │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── chefignore │ │ ├── metadata.json │ │ ├── metadata.rb │ │ ├── recipes │ │ │ └── default.rb │ │ ├── spec │ │ │ ├── spec_helper.rb │ │ │ └── unit │ │ │ │ └── recipes │ │ │ │ └── default_spec.rb │ │ └── test │ │ │ └── integration │ │ │ └── default │ │ │ └── default_test.rb │ ├── node-info │ │ ├── .delivery │ │ │ └── project.toml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Policyfile.rb │ │ ├── README.md │ │ ├── chefignore │ │ ├── kitchen.yml │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── default.rb │ │ │ ├── node-info.rb │ │ │ └── repositories.rb │ │ ├── spec │ │ │ ├── spec_helper.rb │ │ │ └── unit │ │ │ │ └── recipes │ │ │ │ ├── default_spec.rb │ │ │ │ ├── node-info_spec.rb │ │ │ │ └── repositories_spec.rb │ │ └── test │ │ │ └── integration │ │ │ └── default │ │ │ ├── default_test.rb │ │ │ ├── node-info_test.rb │ │ │ └── repositories_test.rb │ ├── node-packages │ │ ├── .delivery │ │ │ └── project.toml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Policyfile.rb │ │ ├── README.md │ │ ├── chefignore │ │ ├── kitchen.yml │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── default.rb │ │ │ └── packages.rb │ │ ├── spec │ │ │ ├── spec_helper.rb │ │ │ └── unit │ │ │ │ └── recipes │ │ │ │ ├── default_spec.rb │ │ │ │ └── packages_spec.rb │ │ └── test │ │ │ └── integration │ │ │ └── default │ │ │ ├── default_test.rb │ │ │ └── packages_test.rb │ └── node_site │ │ ├── .delivery │ │ └── project.toml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Policyfile.rb │ │ ├── README.md │ │ ├── chefignore │ │ ├── kitchen.yml │ │ ├── metadata.rb │ │ ├── recipes │ │ ├── default.rb │ │ └── site.rb │ │ ├── resources │ │ └── website.rb │ │ ├── spec │ │ ├── spec_helper.rb │ │ └── unit │ │ │ └── recipes │ │ │ ├── default_spec.rb │ │ │ └── site_spec.rb │ │ └── test │ │ └── integration │ │ └── default │ │ ├── default_test.rb │ │ └── site_test.rb │ ├── data_bags │ ├── README.md │ └── example │ │ └── example_item.json │ ├── policyfiles │ └── README.md │ └── roles │ └── demo.json ├── chef-linux ├── .chef-repo.txt ├── README.md ├── chefignore ├── cookbooks │ ├── README.md │ ├── linux_devsec │ │ ├── .delivery │ │ │ └── project.toml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Policyfile.rb │ │ ├── README.md │ │ ├── chefignore │ │ ├── kitchen.yml │ │ ├── metadata.rb │ │ ├── recipes │ │ │ └── default.rb │ │ ├── spec │ │ │ ├── spec_helper.rb │ │ │ └── unit │ │ │ │ └── recipes │ │ │ │ └── default_spec.rb │ │ └── test │ │ │ └── integration │ │ │ └── default │ │ │ └── default_test.rb │ ├── linux_node │ │ ├── .delivery │ │ │ └── project.toml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Policyfile.rb │ │ ├── README.md │ │ ├── chefignore │ │ ├── kitchen.yml │ │ ├── libraries │ │ │ └── node_info.rb │ │ ├── metadata.rb │ │ ├── policyfiles │ │ │ ├── nodeinfo.rb │ │ │ ├── userinfo.rb │ │ │ └── webserver.rb │ │ ├── recipes │ │ │ ├── default.rb │ │ │ ├── nodeinfo.rb │ │ │ ├── userinfo.rb │ │ │ └── webserver.rb │ │ ├── resources │ │ │ └── webserver.rb │ │ ├── spec │ │ │ ├── spec_helper.rb │ │ │ └── unit │ │ │ │ └── recipes │ │ │ │ ├── default_spec.rb │ │ │ │ ├── nodeinfo_spec.rb │ │ │ │ ├── userinfo_spec.rb │ │ │ │ └── webserver_spec.rb │ │ ├── templates │ │ │ └── node-info.txt.erb │ │ └── test │ │ │ └── integration │ │ │ └── default │ │ │ ├── default_test.rb │ │ │ ├── nodeinfo_test.rb │ │ │ ├── userinfo_test.rb │ │ │ └── webserver_test.rb │ └── motd_linux │ │ ├── .delivery │ │ └── project.toml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Policyfile.rb │ │ ├── README.md │ │ ├── chefignore │ │ ├── kitchen.yml │ │ ├── metadata.rb │ │ ├── policyfiles │ │ ├── motd.rb │ │ └── motd_chef_status.rb │ │ ├── recipes │ │ └── default.rb │ │ ├── spec │ │ ├── spec_helper.rb │ │ └── unit │ │ │ └── recipes │ │ │ └── default_spec.rb │ │ └── test │ │ └── integration │ │ └── default │ │ └── default_test.rb ├── data_bags │ ├── README.md │ ├── example │ │ └── example_item.json │ └── users │ │ ├── emily.json │ │ ├── james.json │ │ └── kate.json ├── images │ └── centos │ │ └── packer │ │ ├── builds.pkr.hcl │ │ ├── sources.pkr.hcl │ │ └── variables.pkr.hcl └── policyfiles │ └── README.md ├── chef-planning-installing ├── bash │ ├── COMMANDS.md │ ├── Create-LinuxClientARM.sh │ ├── Create-WindowsClientARM.sh │ ├── CreateCourseEnvironmentARM.sh │ ├── GenerateNames.sh │ ├── LinuxClient.json │ ├── WindowsClient.json │ └── parameters.json ├── chef-server-on-ubuntu │ └── install_chef.sh ├── cli │ ├── CreateCourseEnvironment.sh │ ├── CreateCourseEnvironmentARM.sh │ ├── GenerateNames.sh │ ├── azuredeploy.json │ └── azuredeploy.parameters.json └── powershell │ ├── Create-CourseEnvironment.ps1 │ ├── Create-CourseEnvironmentARM.ps1 │ ├── Create-LinuxClientARM.ps1 │ ├── Create-WindowsClientARM.ps1 │ ├── LinuxClient.json │ └── WindowsClient.json ├── chef-windows ├── .chef-repo.txt ├── .gitignore ├── LICENSE ├── README.md ├── chefignore ├── cookbooks │ ├── README.md │ ├── windows_node │ │ ├── .delivery │ │ │ └── project.toml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Policyfile.rb │ │ ├── README.md │ │ ├── chefignore │ │ ├── kitchen.yml │ │ ├── libraries │ │ │ └── node_info.rb │ │ ├── metadata.rb │ │ ├── policyfiles │ │ │ ├── nodeinfo.rb │ │ │ ├── userinfo.rb │ │ │ └── webserver.rb │ │ ├── recipes │ │ │ ├── default.rb │ │ │ ├── nodeinfo.rb │ │ │ ├── userinfo.rb │ │ │ └── webserver.rb │ │ ├── resources │ │ │ └── webserver.rb │ │ ├── spec │ │ │ ├── spec_helper.rb │ │ │ └── unit │ │ │ │ └── recipes │ │ │ │ ├── nodeinfo_spec.rb │ │ │ │ ├── usernode_spec.rb │ │ │ │ └── webserver_spec.rb │ │ ├── templates │ │ │ └── node-info.txt.erb │ │ └── test │ │ │ └── integration │ │ │ └── default │ │ │ ├── default_test.rb │ │ │ ├── nodeinfo_test.rb │ │ │ ├── usernode_test.rb │ │ │ └── webserver_test.rb │ └── windows_packages │ │ ├── .delivery │ │ └── project.toml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Policyfile.rb │ │ ├── README.md │ │ ├── chefignore │ │ ├── kitchen.yml │ │ ├── metadata.rb │ │ ├── recipes │ │ ├── default.rb │ │ └── packages.rb │ │ ├── spec │ │ ├── spec_helper.rb │ │ └── unit │ │ │ └── recipes │ │ │ ├── default_spec.rb │ │ │ └── packages_spec.rb │ │ └── test │ │ └── integration │ │ └── default │ │ ├── default_test.rb │ │ └── packages_test.rb ├── data_bags │ ├── README.md │ ├── example │ │ └── example_item.json │ └── users │ │ ├── emily.json │ │ ├── james.json │ │ └── kate.json ├── images │ └── win2019 │ │ ├── answer_files │ │ ├── 2019 │ │ │ └── Autounattend.xml │ │ ├── 10_insider_uefi │ │ │ └── Autounattend.xml │ │ └── server_insider_uefi │ │ │ └── Autounattend.xml │ │ ├── floppy │ │ ├── PinTo10.exe │ │ └── WindowsPowershell.lnk │ │ ├── make_unattend_iso.ps1 │ │ ├── scripts │ │ ├── compact.bat │ │ ├── compile-dotnet-assemblies.bat │ │ ├── debloat-windows.ps1 │ │ ├── dis-updates.bat │ │ ├── disable-screensaver.ps1 │ │ ├── disable-winrm.ps1 │ │ ├── enable-rdp.bat │ │ ├── enable-winrm.ps1 │ │ ├── fixnetwork.ps1 │ │ ├── microsoft-updates.bat │ │ ├── pin-powershell.bat │ │ ├── set-winrm-automatic.bat │ │ ├── sysprep.bat │ │ ├── uac-enable.bat │ │ ├── unattend.xml │ │ ├── vm-guest-tools.bat │ │ └── win-updates.ps1 │ │ ├── vagrantfile-windows_2019.template │ │ └── win_2019.json └── policyfiles │ └── README.md ├── mastering-azure-resource-manager-architecture ├── module-03 │ ├── cli │ │ ├── deploySimpleIaaS.sh │ │ └── deploySimplePaaS.sh │ └── pwsh │ │ ├── Deploy-SimpleIaas.ps1 │ │ └── Deploy-SimplePaas.ps1 ├── module-04 │ ├── cli │ │ ├── deployPaasSolution-01.sh │ │ ├── deployPaasSolution-02.sh │ │ ├── deployPaasSolution-03.sh │ │ ├── deployPaasSolution-04.sh │ │ ├── deployPaasSolution-05.sh │ │ └── deployPaasSolution-06.sh │ └── docker │ │ ├── Dockerfile │ │ └── code │ │ ├── css │ │ └── main.css │ │ └── index.html ├── module-05 │ ├── locationDetails.json │ └── pwsh │ │ ├── Deploy-Networking-01.ps1 │ │ ├── Deploy-Networking-02_1.ps1 │ │ ├── Deploy-Networking-02_2.ps1 │ │ └── Deploy-Networking-03.ps1 ├── module-06 │ ├── cli │ │ ├── deployIaasSolution-01.sh │ │ ├── deployIaasSolution-02.sh │ │ └── deployIaasSolution-03.sh │ └── cloud-init.yml └── module-07 │ ├── pwsh │ ├── Manage-Policy.ps1 │ ├── Manage-Rbac-01.ps1 │ └── Manage-Rbac-02.ps1 │ └── readerSupport.json └── microsoft-azure-resource-manager-mastering ├── Deploy-ContosoIaas.ps1 ├── Deploy-ContosoPaas.ps1 ├── Deploy-IaasSolution.ps1 ├── Deploy-KeyVault.ps1 ├── Deploy-NestedSolution.ps1 ├── Deploy-PaasSolution.ps1 ├── Deploy-SimpleIaas.ps1 ├── Deploy-SimpleIaasTemplate.ps1 ├── Deploy-SimplePaas.ps1 ├── Deploy-SimplePaasTemplate.ps1 ├── New-ARMPolicies.ps1 ├── New-CustomRbacRoles.ps1 ├── New-vmWebTags.ps1 ├── contosoIaas.json ├── contosoPaas.json ├── iaasDeploy.json ├── nested ├── azureDeploy.json ├── azureDeploy.parameters.json └── shared │ ├── networkInterface.json │ ├── publicIP.json │ ├── storageAccount.json │ ├── virtualMachine.json │ └── virtualNetwork.json ├── paasDeploy.json ├── paasDeploy_v2.json ├── policyLocation.json ├── simpleIaas.json └── simplePaas.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/README.md -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-containers/aci/scripts/createTFRemoteState.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-containers/aci/scripts/createTFRemoteState.sh -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-containers/aci/scripts/deployAciSolution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-containers/aci/scripts/deployAciSolution.sh -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-containers/aci/terraform/azure-aci.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-containers/aci/terraform/azure-aci.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-containers/aci/terraform/azure-rg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-containers/aci/terraform/azure-rg.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-containers/aci/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-containers/aci/terraform/main.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-containers/aks/scripts/createTFRemoteState.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-containers/aks/scripts/createTFRemoteState.sh -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-containers/aks/scripts/deployAksSolution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-containers/aks/scripts/deployAksSolution.sh -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-containers/aks/terraform/azure-aks.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-containers/aks/terraform/azure-aks.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-containers/aks/terraform/azure-loganalytics.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-containers/aks/terraform/azure-loganalytics.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-containers/aks/terraform/azure-network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-containers/aks/terraform/azure-network.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-containers/aks/terraform/azure-rbac.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-containers/aks/terraform/azure-rbac.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-containers/aks/terraform/azure-rg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-containers/aks/terraform/azure-rg.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-containers/aks/terraform/azuread-sp.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-containers/aks/terraform/azuread-sp.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-containers/aks/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-containers/aks/terraform/main.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-containers/aks/terraform/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-containers/aks/terraform/output.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-containers/aks/terraform/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-containers/aks/terraform/ssh.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-containers/aks/voting-app/azure-vote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-containers/aks/voting-app/azure-vote.yaml -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-deploy/arm/aml/azureDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-deploy/arm/aml/azureDeploy.json -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-deploy/arm/scripts/deployAml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-deploy/arm/scripts/deployAml.sh -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-deploy/cli/deployAMLAdvanced.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-deploy/cli/deployAMLAdvanced.sh -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-deploy/cli/deployAMLBasic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-deploy/cli/deployAMLBasic.sh -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/scripts/createTFRemoteState.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/scripts/createTFRemoteState.sh -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/scripts/deployIotSolution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/scripts/deployIotSolution.sh -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/.gitignore -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/CHANGELOG.md -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/CONTRIBUTING.md -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/LICENSE.md -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/README.md -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/assets/CommunicationPatterns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/assets/CommunicationPatterns.png -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/assets/CustomVisionOnRPiDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/assets/CustomVisionOnRPiDemo.png -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/assets/IoTEdgeDeployment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/assets/IoTEdgeDeployment.gif -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/assets/VSCodeExtensionVideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/assets/VSCodeExtensionVideo.png -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/deployment.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/deployment.template.json -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/deployment.test-amd64.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/deployment.test-amd64.template.json -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/README.md -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/amd64.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/amd64.Dockerfile -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/app/AnnotationParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/app/AnnotationParser.py -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/app/CameraCapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/app/CameraCapture.py -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/app/ImageServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/app/ImageServer.py -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/app/VideoStream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/app/VideoStream.py -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/app/main.py -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/app/templates/index.html -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/arm32v7.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/arm32v7.Dockerfile -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/build/amd64-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/build/amd64-requirements.txt -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/build/arm32v7-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/build/arm32v7-requirements.txt -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/module.json -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/test-amd64.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/test-amd64.Dockerfile -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/test-arm32v7.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/test-arm32v7.Dockerfile -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/test/AppleAndBanana.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/test/AppleAndBanana.mp4 -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/test/IntegrationTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/test/IntegrationTests.py -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/test/UnitTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/CameraCapture/test/UnitTests.py -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/amd64.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/amd64.Dockerfile -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/app/app.py -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/app/apples and bananas model/labels.txt: -------------------------------------------------------------------------------- 1 | Apple 2 | Banana 3 | -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/app/apples and bananas model/model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/app/apples and bananas model/model.pb -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/app/fruits model/labels.txt: -------------------------------------------------------------------------------- 1 | Apple 2 | Banana 3 | Lemon 4 | Orange 5 | -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/app/fruits model/model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/app/fruits model/model.pb -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/app/labels.txt: -------------------------------------------------------------------------------- 1 | Apple 2 | Banana 3 | -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/app/model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/app/model.pb -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/app/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/app/predict.py -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/arm32v7.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/arm32v7.Dockerfile -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/build/amd64-requirements.txt: -------------------------------------------------------------------------------- 1 | pillow 2 | numpy 3 | flask 4 | -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/build/arm32v7-requirements.txt: -------------------------------------------------------------------------------- 1 | pillow 2 | numpy 3 | flask 4 | tensorflow==2.9.3 5 | -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/module.json -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/ImageClassifierService/readme.txt -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/SenseHatDisplay/app/DisplayManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/SenseHatDisplay/app/DisplayManager.py -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/SenseHatDisplay/app/MessageParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/SenseHatDisplay/app/MessageParser.py -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/SenseHatDisplay/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/SenseHatDisplay/app/main.py -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/SenseHatDisplay/arm32v7.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/SenseHatDisplay/arm32v7.Dockerfile -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/SenseHatDisplay/build/arm32v7-requirements.txt: -------------------------------------------------------------------------------- 1 | azure-iothub-device-client 2 | numpy 3 | rtimulib 4 | sense-hat 5 | -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/SenseHatDisplay/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/SenseHatDisplay/module.json -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/SenseHatDisplay/test/IntegrationTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/SenseHatDisplay/test/IntegrationTests.py -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/SenseHatDisplay/test/UnitTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/SenseHatDisplay/test/UnitTests.py -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/solution/modules/SenseHatDisplay/test/test-arm32v7.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/solution/modules/SenseHatDisplay/test/test-arm32v7.Dockerfile -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/terraform/azure-bastion.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/terraform/azure-bastion.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/terraform/azure-customvision.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/terraform/azure-customvision.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/terraform/azure-iot.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/terraform/azure-iot.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/terraform/azure-keyvault.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/terraform/azure-keyvault.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/terraform/azure-network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/terraform/azure-network.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/terraform/azure-storage.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/terraform/azure-storage.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/terraform/azure-vm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/terraform/azure-vm.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/terraform/main.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/terraform/scripts/registerEdgeDevice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/terraform/scripts/registerEdgeDevice.sh -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-iot/terraform/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-iot/terraform/vars.tf -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-keyvault/deployKeyVault.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-keyvault/deployKeyVault.sh -------------------------------------------------------------------------------- /ai-engineer-deploying-solutions/module-keyvault/manageStorageKeys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/ai-engineer-deploying-solutions/module-keyvault/manageStorageKeys.sh -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/README.md -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/.helmignore -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/Chart.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/requirements.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/_helpers.tpl -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/cart-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/cart-db-dep.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/cart-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/cart-db-svc.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/carts-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/carts-dep.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/carts-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/carts-svc.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/catalogue-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/catalogue-db-dep.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/catalogue-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/catalogue-db-svc.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/catalogue-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/catalogue-dep.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/catalogue-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/catalogue-svc.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/front-end-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/front-end-dep.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/front-end-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/front-end-svc.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/ingress.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/loadtest-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/loadtest-dep.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/orders-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/orders-db-dep.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/orders-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/orders-db-svc.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/orders-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/orders-dep.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/orders-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/orders-svc.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/payment-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/payment-dep.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/payment-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/payment-svc.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/queue-master-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/queue-master-dep.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/queue-master-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/queue-master-svc.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/rabbitmq-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/rabbitmq-dep.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/rabbitmq-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/rabbitmq-svc.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/session-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/session-db-dep.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/session-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/session-db-svc.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/shipping-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/shipping-dep.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/shipping-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/shipping-svc.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/user-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/user-db-dep.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/user-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/user-db-svc.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/user-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/user-dep.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/user-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/user-svc.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/zipkin-cron-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/zipkin-cron-dep.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/zipkin-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/zipkin-dep.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/zipkin-mysql-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/zipkin-mysql-dep.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/zipkin-mysql-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/zipkin-mysql-svc.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/zipkin-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/templates/zipkin-svc.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-application/sock-shop/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-application/sock-shop/values.yaml -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-deploy/README.md -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-deploy/arm/logAnalytics/azureDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-deploy/arm/logAnalytics/azureDeploy.json -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-deploy/scripts/deployAks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-deploy/scripts/deployAks.sh -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-terraform/README.md -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-terraform/scripts/createTFRemoteState.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-terraform/scripts/createTFRemoteState.sh -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-terraform/scripts/deployAksSolution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-terraform/scripts/deployAksSolution.sh -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-terraform/terraform/azure-aks.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-terraform/terraform/azure-aks.tf -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-terraform/terraform/azure-loganalytics.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-terraform/terraform/azure-loganalytics.tf -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-terraform/terraform/azure-network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-terraform/terraform/azure-network.tf -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-terraform/terraform/azure-rbac.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-terraform/terraform/azure-rbac.tf -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-terraform/terraform/azure-rg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-terraform/terraform/azure-rg.tf -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-terraform/terraform/azuread-sp.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-terraform/terraform/azuread-sp.tf -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-terraform/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-terraform/terraform/main.tf -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-terraform/terraform/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-terraform/terraform/output.tf -------------------------------------------------------------------------------- /azure-devops-kubernetes-infrastructure/module-terraform/terraform/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-devops-kubernetes-infrastructure/module-terraform/terraform/vars.tf -------------------------------------------------------------------------------- /azure-resource-manager-deep-dive/Deploy-IaasSolution.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-resource-manager-deep-dive/Deploy-IaasSolution.ps1 -------------------------------------------------------------------------------- /azure-resource-manager-deep-dive/Deploy-NestedSolution.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-resource-manager-deep-dive/Deploy-NestedSolution.ps1 -------------------------------------------------------------------------------- /azure-resource-manager-deep-dive/Deploy-PaasSolution.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-resource-manager-deep-dive/Deploy-PaasSolution.ps1 -------------------------------------------------------------------------------- /azure-resource-manager-deep-dive/Deploy-SimpleIaas.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-resource-manager-deep-dive/Deploy-SimpleIaas.ps1 -------------------------------------------------------------------------------- /azure-resource-manager-deep-dive/Deploy-SimplePaas.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-resource-manager-deep-dive/Deploy-SimplePaas.ps1 -------------------------------------------------------------------------------- /azure-resource-manager-deep-dive/iaasDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-resource-manager-deep-dive/iaasDeploy.json -------------------------------------------------------------------------------- /azure-resource-manager-deep-dive/nested/azureDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-resource-manager-deep-dive/nested/azureDeploy.json -------------------------------------------------------------------------------- /azure-resource-manager-deep-dive/nested/azureDeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-resource-manager-deep-dive/nested/azureDeploy.parameters.json -------------------------------------------------------------------------------- /azure-resource-manager-deep-dive/nested/shared/networkInterface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-resource-manager-deep-dive/nested/shared/networkInterface.json -------------------------------------------------------------------------------- /azure-resource-manager-deep-dive/nested/shared/publicIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-resource-manager-deep-dive/nested/shared/publicIP.json -------------------------------------------------------------------------------- /azure-resource-manager-deep-dive/nested/shared/storageAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-resource-manager-deep-dive/nested/shared/storageAccount.json -------------------------------------------------------------------------------- /azure-resource-manager-deep-dive/nested/shared/virtualMachine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-resource-manager-deep-dive/nested/shared/virtualMachine.json -------------------------------------------------------------------------------- /azure-resource-manager-deep-dive/nested/shared/virtualNetwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-resource-manager-deep-dive/nested/shared/virtualNetwork.json -------------------------------------------------------------------------------- /azure-resource-manager-deep-dive/paasDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-resource-manager-deep-dive/paasDeploy.json -------------------------------------------------------------------------------- /azure-resource-manager-deep-dive/paasDeploy_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/azure-resource-manager-deep-dive/paasDeploy_v2.json -------------------------------------------------------------------------------- /chef-fluency/azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/azure/README.md -------------------------------------------------------------------------------- /chef-fluency/azure/scripts/createTFRemoteState.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/azure/scripts/createTFRemoteState.sh -------------------------------------------------------------------------------- /chef-fluency/azure/scripts/deploySolution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/azure/scripts/deploySolution.sh -------------------------------------------------------------------------------- /chef-fluency/azure/terraform/azure-bastion.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/azure/terraform/azure-bastion.tf -------------------------------------------------------------------------------- /chef-fluency/azure/terraform/azure-keyvault.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/azure/terraform/azure-keyvault.tf -------------------------------------------------------------------------------- /chef-fluency/azure/terraform/azure-network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/azure/terraform/azure-network.tf -------------------------------------------------------------------------------- /chef-fluency/azure/terraform/azure-rg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/azure/terraform/azure-rg.tf -------------------------------------------------------------------------------- /chef-fluency/azure/terraform/azure-storage.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/azure/terraform/azure-storage.tf -------------------------------------------------------------------------------- /chef-fluency/azure/terraform/azure-vm-extensions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/azure/terraform/azure-vm-extensions.tf -------------------------------------------------------------------------------- /chef-fluency/azure/terraform/azure-vm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/azure/terraform/azure-vm.tf -------------------------------------------------------------------------------- /chef-fluency/azure/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/azure/terraform/main.tf -------------------------------------------------------------------------------- /chef-fluency/azure/terraform/output.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chef-fluency/azure/terraform/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/azure/terraform/vars.tf -------------------------------------------------------------------------------- /chef-fluency/chef-repo/.chef-repo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/.chef-repo.txt -------------------------------------------------------------------------------- /chef-fluency/chef-repo/.chef/chef_guid: -------------------------------------------------------------------------------- 1 | 73a4c445-411f-4ab2-820c-7f36c55f6cad -------------------------------------------------------------------------------- /chef-fluency/chef-repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/README.md -------------------------------------------------------------------------------- /chef-fluency/chef-repo/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/chefignore -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/README.md -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/base-linux/.delivery/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/base-linux/.delivery/project.toml -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/base-linux/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/base-linux/.gitignore -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/base-linux/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/base-linux/CHANGELOG.md -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/base-linux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/base-linux/LICENSE -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/base-linux/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/base-linux/Policyfile.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/base-linux/README.md: -------------------------------------------------------------------------------- 1 | # base-linux 2 | 3 | TODO: Enter the cookbook description here. 4 | 5 | -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/base-linux/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/base-linux/chefignore -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/base-linux/kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/base-linux/kitchen.yml -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/base-linux/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/base-linux/metadata.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/base-linux/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/base-linux/recipes/default.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/base-linux/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/base-linux/spec/spec_helper.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/base-linux/spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/base-linux/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/base-linux/test/integration/default/default_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/base-linux/test/integration/default/default_test.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/helloworld/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/helloworld/.gitignore -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/helloworld/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/helloworld/.kitchen.yml -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/helloworld/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/helloworld/Berksfile -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/helloworld/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/helloworld/CHANGELOG.md -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/helloworld/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/helloworld/LICENSE -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/helloworld/README.md: -------------------------------------------------------------------------------- 1 | # helloworld 2 | 3 | this is a test description 4 | -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/helloworld/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/helloworld/chefignore -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/helloworld/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/helloworld/metadata.json -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/helloworld/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/helloworld/metadata.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/helloworld/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/helloworld/recipes/default.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/helloworld/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/helloworld/spec/spec_helper.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/helloworld/spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/helloworld/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/helloworld/test/integration/default/default_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/helloworld/test/integration/default/default_test.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/.delivery/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/.delivery/project.toml -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/.gitignore -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/CHANGELOG.md -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/LICENSE -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/Policyfile.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/README.md -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/chefignore -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/kitchen.yml -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/metadata.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/recipes/default.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/recipes/node-info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/recipes/node-info.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/recipes/repositories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/recipes/repositories.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/spec/spec_helper.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/spec/unit/recipes/node-info_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/spec/unit/recipes/node-info_spec.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/spec/unit/recipes/repositories_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/spec/unit/recipes/repositories_spec.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/test/integration/default/default_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/test/integration/default/default_test.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/test/integration/default/node-info_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/test/integration/default/node-info_test.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-info/test/integration/default/repositories_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-info/test/integration/default/repositories_test.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-packages/.delivery/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-packages/.delivery/project.toml -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-packages/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-packages/.gitignore -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-packages/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-packages/CHANGELOG.md -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-packages/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-packages/LICENSE -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-packages/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-packages/Policyfile.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-packages/README.md: -------------------------------------------------------------------------------- 1 | # node-packages 2 | 3 | TODO: Enter the cookbook description here. 4 | 5 | -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-packages/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-packages/chefignore -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-packages/kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-packages/kitchen.yml -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-packages/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-packages/metadata.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-packages/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-packages/recipes/default.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-packages/recipes/packages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-packages/recipes/packages.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-packages/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-packages/spec/spec_helper.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-packages/spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-packages/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-packages/spec/unit/recipes/packages_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-packages/spec/unit/recipes/packages_spec.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-packages/test/integration/default/default_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-packages/test/integration/default/default_test.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node-packages/test/integration/default/packages_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node-packages/test/integration/default/packages_test.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node_site/.delivery/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node_site/.delivery/project.toml -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node_site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node_site/.gitignore -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node_site/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node_site/CHANGELOG.md -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node_site/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node_site/LICENSE -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node_site/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node_site/Policyfile.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node_site/README.md: -------------------------------------------------------------------------------- 1 | # node_site 2 | 3 | TODO: Enter the cookbook description here. 4 | 5 | -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node_site/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node_site/chefignore -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node_site/kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node_site/kitchen.yml -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node_site/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node_site/metadata.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node_site/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node_site/recipes/default.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node_site/recipes/site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node_site/recipes/site.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node_site/resources/website.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node_site/resources/website.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node_site/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node_site/spec/spec_helper.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node_site/spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node_site/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node_site/spec/unit/recipes/site_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node_site/spec/unit/recipes/site_spec.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node_site/test/integration/default/default_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node_site/test/integration/default/default_test.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/cookbooks/node_site/test/integration/default/site_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/cookbooks/node_site/test/integration/default/site_test.rb -------------------------------------------------------------------------------- /chef-fluency/chef-repo/data_bags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/data_bags/README.md -------------------------------------------------------------------------------- /chef-fluency/chef-repo/data_bags/example/example_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/data_bags/example/example_item.json -------------------------------------------------------------------------------- /chef-fluency/chef-repo/policyfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/policyfiles/README.md -------------------------------------------------------------------------------- /chef-fluency/chef-repo/roles/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-fluency/chef-repo/roles/demo.json -------------------------------------------------------------------------------- /chef-linux/.chef-repo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/.chef-repo.txt -------------------------------------------------------------------------------- /chef-linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/README.md -------------------------------------------------------------------------------- /chef-linux/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/chefignore -------------------------------------------------------------------------------- /chef-linux/cookbooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/README.md -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_devsec/.delivery/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_devsec/.delivery/project.toml -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_devsec/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_devsec/.gitignore -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_devsec/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_devsec/CHANGELOG.md -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_devsec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_devsec/LICENSE -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_devsec/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_devsec/Policyfile.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_devsec/README.md: -------------------------------------------------------------------------------- 1 | # linux_devsec 2 | 3 | TODO: Enter the cookbook description here. 4 | 5 | -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_devsec/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_devsec/chefignore -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_devsec/kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_devsec/kitchen.yml -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_devsec/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_devsec/metadata.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_devsec/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_devsec/recipes/default.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_devsec/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_devsec/spec/spec_helper.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_devsec/spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_devsec/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_devsec/test/integration/default/default_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_devsec/test/integration/default/default_test.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/.delivery/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/.delivery/project.toml -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/.gitignore -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/CHANGELOG.md -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/LICENSE -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/Policyfile.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/README.md: -------------------------------------------------------------------------------- 1 | # linux_node 2 | 3 | TODO: Enter the cookbook description here. 4 | 5 | -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/chefignore -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/kitchen.yml -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/libraries/node_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/libraries/node_info.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/metadata.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/policyfiles/nodeinfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/policyfiles/nodeinfo.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/policyfiles/userinfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/policyfiles/userinfo.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/policyfiles/webserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/policyfiles/webserver.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/recipes/default.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/recipes/nodeinfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/recipes/nodeinfo.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/recipes/userinfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/recipes/userinfo.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/recipes/webserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/recipes/webserver.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/resources/webserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/resources/webserver.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/spec/spec_helper.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/spec/unit/recipes/nodeinfo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/spec/unit/recipes/nodeinfo_spec.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/spec/unit/recipes/userinfo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/spec/unit/recipes/userinfo_spec.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/spec/unit/recipes/webserver_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/spec/unit/recipes/webserver_spec.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/templates/node-info.txt.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/templates/node-info.txt.erb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/test/integration/default/default_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/test/integration/default/default_test.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/test/integration/default/nodeinfo_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/test/integration/default/nodeinfo_test.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/test/integration/default/userinfo_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/test/integration/default/userinfo_test.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/linux_node/test/integration/default/webserver_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/linux_node/test/integration/default/webserver_test.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/motd_linux/.delivery/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/motd_linux/.delivery/project.toml -------------------------------------------------------------------------------- /chef-linux/cookbooks/motd_linux/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/motd_linux/.gitignore -------------------------------------------------------------------------------- /chef-linux/cookbooks/motd_linux/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/motd_linux/CHANGELOG.md -------------------------------------------------------------------------------- /chef-linux/cookbooks/motd_linux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/motd_linux/LICENSE -------------------------------------------------------------------------------- /chef-linux/cookbooks/motd_linux/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/motd_linux/Policyfile.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/motd_linux/README.md: -------------------------------------------------------------------------------- 1 | # motd_linux 2 | 3 | TODO: Enter the cookbook description here. 4 | 5 | -------------------------------------------------------------------------------- /chef-linux/cookbooks/motd_linux/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/motd_linux/chefignore -------------------------------------------------------------------------------- /chef-linux/cookbooks/motd_linux/kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/motd_linux/kitchen.yml -------------------------------------------------------------------------------- /chef-linux/cookbooks/motd_linux/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/motd_linux/metadata.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/motd_linux/policyfiles/motd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/motd_linux/policyfiles/motd.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/motd_linux/policyfiles/motd_chef_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/motd_linux/policyfiles/motd_chef_status.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/motd_linux/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/motd_linux/recipes/default.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/motd_linux/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/motd_linux/spec/spec_helper.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/motd_linux/spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/motd_linux/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /chef-linux/cookbooks/motd_linux/test/integration/default/default_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/cookbooks/motd_linux/test/integration/default/default_test.rb -------------------------------------------------------------------------------- /chef-linux/data_bags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/data_bags/README.md -------------------------------------------------------------------------------- /chef-linux/data_bags/example/example_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/data_bags/example/example_item.json -------------------------------------------------------------------------------- /chef-linux/data_bags/users/emily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/data_bags/users/emily.json -------------------------------------------------------------------------------- /chef-linux/data_bags/users/james.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/data_bags/users/james.json -------------------------------------------------------------------------------- /chef-linux/data_bags/users/kate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/data_bags/users/kate.json -------------------------------------------------------------------------------- /chef-linux/images/centos/packer/builds.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/images/centos/packer/builds.pkr.hcl -------------------------------------------------------------------------------- /chef-linux/images/centos/packer/sources.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/images/centos/packer/sources.pkr.hcl -------------------------------------------------------------------------------- /chef-linux/images/centos/packer/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/images/centos/packer/variables.pkr.hcl -------------------------------------------------------------------------------- /chef-linux/policyfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-linux/policyfiles/README.md -------------------------------------------------------------------------------- /chef-planning-installing/bash/COMMANDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/bash/COMMANDS.md -------------------------------------------------------------------------------- /chef-planning-installing/bash/Create-LinuxClientARM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/bash/Create-LinuxClientARM.sh -------------------------------------------------------------------------------- /chef-planning-installing/bash/Create-WindowsClientARM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/bash/Create-WindowsClientARM.sh -------------------------------------------------------------------------------- /chef-planning-installing/bash/CreateCourseEnvironmentARM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/bash/CreateCourseEnvironmentARM.sh -------------------------------------------------------------------------------- /chef-planning-installing/bash/GenerateNames.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/bash/GenerateNames.sh -------------------------------------------------------------------------------- /chef-planning-installing/bash/LinuxClient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/bash/LinuxClient.json -------------------------------------------------------------------------------- /chef-planning-installing/bash/WindowsClient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/bash/WindowsClient.json -------------------------------------------------------------------------------- /chef-planning-installing/bash/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/bash/parameters.json -------------------------------------------------------------------------------- /chef-planning-installing/chef-server-on-ubuntu/install_chef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/chef-server-on-ubuntu/install_chef.sh -------------------------------------------------------------------------------- /chef-planning-installing/cli/CreateCourseEnvironment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/cli/CreateCourseEnvironment.sh -------------------------------------------------------------------------------- /chef-planning-installing/cli/CreateCourseEnvironmentARM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/cli/CreateCourseEnvironmentARM.sh -------------------------------------------------------------------------------- /chef-planning-installing/cli/GenerateNames.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/cli/GenerateNames.sh -------------------------------------------------------------------------------- /chef-planning-installing/cli/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/cli/azuredeploy.json -------------------------------------------------------------------------------- /chef-planning-installing/cli/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/cli/azuredeploy.parameters.json -------------------------------------------------------------------------------- /chef-planning-installing/powershell/Create-CourseEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/powershell/Create-CourseEnvironment.ps1 -------------------------------------------------------------------------------- /chef-planning-installing/powershell/Create-CourseEnvironmentARM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/powershell/Create-CourseEnvironmentARM.ps1 -------------------------------------------------------------------------------- /chef-planning-installing/powershell/Create-LinuxClientARM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/powershell/Create-LinuxClientARM.ps1 -------------------------------------------------------------------------------- /chef-planning-installing/powershell/Create-WindowsClientARM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/powershell/Create-WindowsClientARM.ps1 -------------------------------------------------------------------------------- /chef-planning-installing/powershell/LinuxClient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/powershell/LinuxClient.json -------------------------------------------------------------------------------- /chef-planning-installing/powershell/WindowsClient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-planning-installing/powershell/WindowsClient.json -------------------------------------------------------------------------------- /chef-windows/.chef-repo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/.chef-repo.txt -------------------------------------------------------------------------------- /chef-windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/.gitignore -------------------------------------------------------------------------------- /chef-windows/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/LICENSE -------------------------------------------------------------------------------- /chef-windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/README.md -------------------------------------------------------------------------------- /chef-windows/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/chefignore -------------------------------------------------------------------------------- /chef-windows/cookbooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/README.md -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/.delivery/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/.delivery/project.toml -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/.gitignore -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/CHANGELOG.md -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/LICENSE -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/Policyfile.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/README.md: -------------------------------------------------------------------------------- 1 | # windows_node 2 | 3 | TODO: Enter the cookbook description here. 4 | 5 | -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/chefignore -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/kitchen.yml -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/libraries/node_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/libraries/node_info.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/metadata.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/policyfiles/nodeinfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/policyfiles/nodeinfo.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/policyfiles/userinfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/policyfiles/userinfo.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/policyfiles/webserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/policyfiles/webserver.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/recipes/default.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/recipes/nodeinfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/recipes/nodeinfo.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/recipes/userinfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/recipes/userinfo.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/recipes/webserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/recipes/webserver.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/resources/webserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/resources/webserver.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/spec/spec_helper.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/spec/unit/recipes/nodeinfo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/spec/unit/recipes/nodeinfo_spec.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/spec/unit/recipes/usernode_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/spec/unit/recipes/usernode_spec.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/spec/unit/recipes/webserver_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/spec/unit/recipes/webserver_spec.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/templates/node-info.txt.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/templates/node-info.txt.erb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/test/integration/default/default_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/test/integration/default/default_test.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/test/integration/default/nodeinfo_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/test/integration/default/nodeinfo_test.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/test/integration/default/usernode_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/test/integration/default/usernode_test.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_node/test/integration/default/webserver_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_node/test/integration/default/webserver_test.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_packages/.delivery/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_packages/.delivery/project.toml -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_packages/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_packages/.gitignore -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_packages/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_packages/CHANGELOG.md -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_packages/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_packages/LICENSE -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_packages/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_packages/Policyfile.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_packages/README.md: -------------------------------------------------------------------------------- 1 | # windows_packages 2 | 3 | TODO: Enter the cookbook description here. 4 | 5 | -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_packages/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_packages/chefignore -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_packages/kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_packages/kitchen.yml -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_packages/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_packages/metadata.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_packages/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_packages/recipes/default.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_packages/recipes/packages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_packages/recipes/packages.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_packages/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_packages/spec/spec_helper.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_packages/spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_packages/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_packages/spec/unit/recipes/packages_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_packages/spec/unit/recipes/packages_spec.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_packages/test/integration/default/default_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_packages/test/integration/default/default_test.rb -------------------------------------------------------------------------------- /chef-windows/cookbooks/windows_packages/test/integration/default/packages_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/cookbooks/windows_packages/test/integration/default/packages_test.rb -------------------------------------------------------------------------------- /chef-windows/data_bags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/data_bags/README.md -------------------------------------------------------------------------------- /chef-windows/data_bags/example/example_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/data_bags/example/example_item.json -------------------------------------------------------------------------------- /chef-windows/data_bags/users/emily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/data_bags/users/emily.json -------------------------------------------------------------------------------- /chef-windows/data_bags/users/james.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/data_bags/users/james.json -------------------------------------------------------------------------------- /chef-windows/data_bags/users/kate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/data_bags/users/kate.json -------------------------------------------------------------------------------- /chef-windows/images/win2019/answer_files/10_insider_uefi/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/answer_files/10_insider_uefi/Autounattend.xml -------------------------------------------------------------------------------- /chef-windows/images/win2019/answer_files/2019/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/answer_files/2019/Autounattend.xml -------------------------------------------------------------------------------- /chef-windows/images/win2019/answer_files/server_insider_uefi/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/answer_files/server_insider_uefi/Autounattend.xml -------------------------------------------------------------------------------- /chef-windows/images/win2019/floppy/PinTo10.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/floppy/PinTo10.exe -------------------------------------------------------------------------------- /chef-windows/images/win2019/floppy/WindowsPowershell.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/floppy/WindowsPowershell.lnk -------------------------------------------------------------------------------- /chef-windows/images/win2019/make_unattend_iso.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/make_unattend_iso.ps1 -------------------------------------------------------------------------------- /chef-windows/images/win2019/scripts/compact.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/scripts/compact.bat -------------------------------------------------------------------------------- /chef-windows/images/win2019/scripts/compile-dotnet-assemblies.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/scripts/compile-dotnet-assemblies.bat -------------------------------------------------------------------------------- /chef-windows/images/win2019/scripts/debloat-windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/scripts/debloat-windows.ps1 -------------------------------------------------------------------------------- /chef-windows/images/win2019/scripts/dis-updates.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/scripts/dis-updates.bat -------------------------------------------------------------------------------- /chef-windows/images/win2019/scripts/disable-screensaver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/scripts/disable-screensaver.ps1 -------------------------------------------------------------------------------- /chef-windows/images/win2019/scripts/disable-winrm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/scripts/disable-winrm.ps1 -------------------------------------------------------------------------------- /chef-windows/images/win2019/scripts/enable-rdp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/scripts/enable-rdp.bat -------------------------------------------------------------------------------- /chef-windows/images/win2019/scripts/enable-winrm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/scripts/enable-winrm.ps1 -------------------------------------------------------------------------------- /chef-windows/images/win2019/scripts/fixnetwork.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/scripts/fixnetwork.ps1 -------------------------------------------------------------------------------- /chef-windows/images/win2019/scripts/microsoft-updates.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/scripts/microsoft-updates.bat -------------------------------------------------------------------------------- /chef-windows/images/win2019/scripts/pin-powershell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/scripts/pin-powershell.bat -------------------------------------------------------------------------------- /chef-windows/images/win2019/scripts/set-winrm-automatic.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/scripts/set-winrm-automatic.bat -------------------------------------------------------------------------------- /chef-windows/images/win2019/scripts/sysprep.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/scripts/sysprep.bat -------------------------------------------------------------------------------- /chef-windows/images/win2019/scripts/uac-enable.bat: -------------------------------------------------------------------------------- 1 | reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /f /v EnableLUA /t REG_DWORD /d 1 2 | -------------------------------------------------------------------------------- /chef-windows/images/win2019/scripts/unattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/scripts/unattend.xml -------------------------------------------------------------------------------- /chef-windows/images/win2019/scripts/vm-guest-tools.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/scripts/vm-guest-tools.bat -------------------------------------------------------------------------------- /chef-windows/images/win2019/scripts/win-updates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/scripts/win-updates.ps1 -------------------------------------------------------------------------------- /chef-windows/images/win2019/vagrantfile-windows_2019.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/vagrantfile-windows_2019.template -------------------------------------------------------------------------------- /chef-windows/images/win2019/win_2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/images/win2019/win_2019.json -------------------------------------------------------------------------------- /chef-windows/policyfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/chef-windows/policyfiles/README.md -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-03/cli/deploySimpleIaaS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-03/cli/deploySimpleIaaS.sh -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-03/cli/deploySimplePaaS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-03/cli/deploySimplePaaS.sh -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-03/pwsh/Deploy-SimpleIaas.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-03/pwsh/Deploy-SimpleIaas.ps1 -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-03/pwsh/Deploy-SimplePaas.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-03/pwsh/Deploy-SimplePaas.ps1 -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-04/cli/deployPaasSolution-01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-04/cli/deployPaasSolution-01.sh -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-04/cli/deployPaasSolution-02.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-04/cli/deployPaasSolution-02.sh -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-04/cli/deployPaasSolution-03.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-04/cli/deployPaasSolution-03.sh -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-04/cli/deployPaasSolution-04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-04/cli/deployPaasSolution-04.sh -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-04/cli/deployPaasSolution-05.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-04/cli/deployPaasSolution-05.sh -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-04/cli/deployPaasSolution-06.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-04/cli/deployPaasSolution-06.sh -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-04/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-04/docker/Dockerfile -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-04/docker/code/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-04/docker/code/css/main.css -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-04/docker/code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-04/docker/code/index.html -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-05/locationDetails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-05/locationDetails.json -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-05/pwsh/Deploy-Networking-01.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-05/pwsh/Deploy-Networking-01.ps1 -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-05/pwsh/Deploy-Networking-02_1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-05/pwsh/Deploy-Networking-02_1.ps1 -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-05/pwsh/Deploy-Networking-02_2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-05/pwsh/Deploy-Networking-02_2.ps1 -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-05/pwsh/Deploy-Networking-03.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-05/pwsh/Deploy-Networking-03.ps1 -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-06/cli/deployIaasSolution-01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-06/cli/deployIaasSolution-01.sh -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-06/cli/deployIaasSolution-02.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-06/cli/deployIaasSolution-02.sh -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-06/cli/deployIaasSolution-03.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-06/cli/deployIaasSolution-03.sh -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-06/cloud-init.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-06/cloud-init.yml -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-07/pwsh/Manage-Policy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-07/pwsh/Manage-Policy.ps1 -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-07/pwsh/Manage-Rbac-01.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-07/pwsh/Manage-Rbac-01.ps1 -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-07/pwsh/Manage-Rbac-02.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-07/pwsh/Manage-Rbac-02.ps1 -------------------------------------------------------------------------------- /mastering-azure-resource-manager-architecture/module-07/readerSupport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/mastering-azure-resource-manager-architecture/module-07/readerSupport.json -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/Deploy-ContosoIaas.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/Deploy-ContosoIaas.ps1 -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/Deploy-ContosoPaas.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/Deploy-ContosoPaas.ps1 -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/Deploy-IaasSolution.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/Deploy-IaasSolution.ps1 -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/Deploy-KeyVault.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/Deploy-KeyVault.ps1 -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/Deploy-NestedSolution.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/Deploy-NestedSolution.ps1 -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/Deploy-PaasSolution.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/Deploy-PaasSolution.ps1 -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/Deploy-SimpleIaas.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/Deploy-SimpleIaas.ps1 -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/Deploy-SimpleIaasTemplate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/Deploy-SimpleIaasTemplate.ps1 -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/Deploy-SimplePaas.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/Deploy-SimplePaas.ps1 -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/Deploy-SimplePaasTemplate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/Deploy-SimplePaasTemplate.ps1 -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/New-ARMPolicies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/New-ARMPolicies.ps1 -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/New-CustomRbacRoles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/New-CustomRbacRoles.ps1 -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/New-vmWebTags.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/New-vmWebTags.ps1 -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/contosoIaas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/contosoIaas.json -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/contosoPaas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/contosoPaas.json -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/iaasDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/iaasDeploy.json -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/nested/azureDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/nested/azureDeploy.json -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/nested/azureDeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/nested/azureDeploy.parameters.json -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/nested/shared/networkInterface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/nested/shared/networkInterface.json -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/nested/shared/publicIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/nested/shared/publicIP.json -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/nested/shared/storageAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/nested/shared/storageAccount.json -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/nested/shared/virtualMachine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/nested/shared/virtualMachine.json -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/nested/shared/virtualNetwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/nested/shared/virtualNetwork.json -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/paasDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/paasDeploy.json -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/paasDeploy_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/paasDeploy_v2.json -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/policyLocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/policyLocation.json -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/simpleIaas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/simpleIaas.json -------------------------------------------------------------------------------- /microsoft-azure-resource-manager-mastering/simplePaas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbannan/pluralsight/HEAD/microsoft-azure-resource-manager-mastering/simplePaas.json --------------------------------------------------------------------------------