├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── Azure ├── Functions │ └── SubscriptionVendingMachine │ │ └── v1.zip ├── Infra-as-Code │ ├── ARM-Templates │ │ ├── 2-VNETs-With-Peering-Same-Resource-Group │ │ │ ├── README.md │ │ │ ├── main.bicep │ │ │ ├── main.json │ │ │ └── main.parameters.json │ │ ├── Functions │ │ │ └── CSVToJSON-PWSH │ │ │ │ ├── main.bicep │ │ │ │ └── main.json │ │ ├── Resource-Groups-With-VNET │ │ │ ├── README.md │ │ │ ├── azuredeploy.json │ │ │ ├── azuredeploy.parameters.json │ │ │ └── bicep │ │ │ │ ├── main.bicep │ │ │ │ ├── main.json │ │ │ │ └── modules │ │ │ │ ├── peering.bicep │ │ │ │ └── vnet.bicep │ │ ├── Resource-Groups │ │ │ ├── README.md │ │ │ ├── azuredeploy.json │ │ │ └── azuredeploy.parameters.json │ │ └── Windows-2019-VM │ │ │ ├── README.md │ │ │ ├── azuredeploy.json │ │ │ └── azuredeploy.parameters.json │ ├── Bicep │ │ ├── ESLZ-MGs.bicep │ │ ├── Examples │ │ │ └── vwanHubWithVnetsAndDeploymentScript │ │ │ │ ├── modules │ │ │ │ ├── archive │ │ │ │ │ └── vWanVHubRouterStateCheck.bicep │ │ │ │ ├── azResourceStateCheck.bicep │ │ │ │ ├── vnet.bicep │ │ │ │ ├── vwan.bicep │ │ │ │ ├── vwanhub.bicep │ │ │ │ └── vwanvhcs.bicep │ │ │ │ ├── orch.bicep │ │ │ │ ├── orch.parameters.json │ │ │ │ └── scripts │ │ │ │ ├── Invoke-AzResourceStateCheck.ps1 │ │ │ │ └── archive │ │ │ │ └── vhubCheckRouterState.ps1 │ │ ├── Modules │ │ │ ├── moduleBastion.bicep │ │ │ ├── moduleVNet.bicep │ │ │ ├── moduleVNetAzFw.bicep │ │ │ ├── moduleVWAN.bicep │ │ │ └── moduleVWANHub.bicep │ │ ├── Orchestration │ │ │ └── VWAN-With-N-VNET-Spokes-With-Bastion.bicep │ │ ├── VNET-AzFW-Subnets.bicep │ │ └── VNET-AzFW-Subnets.json │ └── Terraform │ │ └── VWAN │ │ └── VWAN-Multi-Hub.tf ├── Policy │ ├── CostCentreTagAllowedValues.json │ ├── DateCreated │ │ ├── Definitions │ │ │ ├── Mod-DateCreated-Tag-RSGs.json │ │ │ └── Mod-DateCreated-Tag-Res.json │ │ └── Initiative-Definitions │ │ │ └── Mod-DateCreated-Tag-All.json │ ├── Deny-VNET-Peering-Cross-Subscription.json │ ├── DeployBudgetForAllSubscriptions.json │ ├── DeployBudgetForAllSubscriptionsSandbox.json │ ├── DeployDependencyAgentForWindowsVMsIncludingWVDWin10MS.json │ ├── DeployLogAnalyticsAgentForWindowsVMsIncludingWVDWin10MS.json │ ├── NICsWithPrivateIPsNotSetToStatic.json │ └── PublicIPsNotSetToStatic.json ├── PowerShell │ ├── Billing │ │ └── Invoke-EABillingSPNPermissionsSetup.ps1 │ ├── Enterprise-scale │ │ ├── README.md │ │ ├── Wipe-ESLZAzTenant.ps1 │ │ └── media │ │ │ ├── eslz-clean-script-example.png │ │ │ └── eslz-clean-script-failsafe.png │ ├── Partner Tools │ │ ├── LinkMPNPartnerIDToAzureAccountV1.ps1 │ │ └── LinkMPNPartnerIDToAzureAccountV2.ps1 │ ├── RBAC │ │ └── Get-AllBuiltInRBACRolesWithCreadtedAndUpdatedDates.ps1 │ ├── Subscriptions │ │ ├── GainAccessToAllSubscriptionsInTenant.ps1 │ │ └── GatherAllSubscriptionsInTenant.ps1 │ ├── Tags │ │ └── ApplyTagsAllResourceTypesInResourceGroupV1.0.ps1 │ └── WVD │ │ ├── jt-wvd-choco-app-installs.ps1 │ │ └── jt-wvd-custom-installs.ps1 └── Resource Graph │ ├── Dashboards │ └── exchangeGoddessARGDashboard.json │ └── Queries │ ├── list-all-vnets-and-subnets-with-cidr.txt │ ├── list-specifed-tag-values.txt │ ├── resource-container-change-histroy.txt │ ├── security-center-assesments-unhealthy-by-resource-group.txt │ ├── subscription-tenant-and-offer.txt │ ├── udr-bgp-propogation-disabled.txt │ └── vnet-dns-server-incorrect.txt ├── AzureDevOps └── TerraformDemoPipelines │ └── ES-Terraform-Community │ ├── AzureDevOpsBuilds │ ├── Terraform Import.yml │ ├── Terraform Plan.yml │ └── Terraform Status Check.yml │ ├── AzureDevOpsReleases │ └── Terraform Apply.yml │ ├── README.md │ └── pwsh │ └── tfAnnotate.ps1 ├── Chocolatey ├── JTNewBuildChoco.txt ├── JTPWSHProfile.ps1 └── windowsTerminalProfile.json ├── GitHub ├── Actions │ └── Wiki Sync │ │ ├── sync-wiki-cp.yml │ │ └── sync-wiki-rsync.yml └── PowerShell │ ├── Invoke-GitHubReleaseFetcher.ps1 │ └── gh-release-checker.yml ├── LICENSE └── README.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/.gitignore -------------------------------------------------------------------------------- /Azure/Functions/SubscriptionVendingMachine/v1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Functions/SubscriptionVendingMachine/v1.zip -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/2-VNETs-With-Peering-Same-Resource-Group/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/2-VNETs-With-Peering-Same-Resource-Group/README.md -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/2-VNETs-With-Peering-Same-Resource-Group/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/2-VNETs-With-Peering-Same-Resource-Group/main.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/2-VNETs-With-Peering-Same-Resource-Group/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/2-VNETs-With-Peering-Same-Resource-Group/main.json -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/2-VNETs-With-Peering-Same-Resource-Group/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/2-VNETs-With-Peering-Same-Resource-Group/main.parameters.json -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/Functions/CSVToJSON-PWSH/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/Functions/CSVToJSON-PWSH/main.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/Functions/CSVToJSON-PWSH/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/Functions/CSVToJSON-PWSH/main.json -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/Resource-Groups-With-VNET/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/Resource-Groups-With-VNET/README.md -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/Resource-Groups-With-VNET/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/Resource-Groups-With-VNET/azuredeploy.json -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/Resource-Groups-With-VNET/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/Resource-Groups-With-VNET/azuredeploy.parameters.json -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/Resource-Groups-With-VNET/bicep/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/Resource-Groups-With-VNET/bicep/main.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/Resource-Groups-With-VNET/bicep/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/Resource-Groups-With-VNET/bicep/main.json -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/Resource-Groups-With-VNET/bicep/modules/peering.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/Resource-Groups-With-VNET/bicep/modules/peering.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/Resource-Groups-With-VNET/bicep/modules/vnet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/Resource-Groups-With-VNET/bicep/modules/vnet.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/Resource-Groups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/Resource-Groups/README.md -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/Resource-Groups/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/Resource-Groups/azuredeploy.json -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/Resource-Groups/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/Resource-Groups/azuredeploy.parameters.json -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/Windows-2019-VM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/Windows-2019-VM/README.md -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/Windows-2019-VM/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/Windows-2019-VM/azuredeploy.json -------------------------------------------------------------------------------- /Azure/Infra-as-Code/ARM-Templates/Windows-2019-VM/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/ARM-Templates/Windows-2019-VM/azuredeploy.parameters.json -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/ESLZ-MGs.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/ESLZ-MGs.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/modules/archive/vWanVHubRouterStateCheck.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/modules/archive/vWanVHubRouterStateCheck.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/modules/azResourceStateCheck.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/modules/azResourceStateCheck.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/modules/vnet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/modules/vnet.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/modules/vwan.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/modules/vwan.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/modules/vwanhub.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/modules/vwanhub.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/modules/vwanvhcs.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/modules/vwanvhcs.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/orch.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/orch.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/orch.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/orch.parameters.json -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/scripts/Invoke-AzResourceStateCheck.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/scripts/Invoke-AzResourceStateCheck.ps1 -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/scripts/archive/vhubCheckRouterState.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/Examples/vwanHubWithVnetsAndDeploymentScript/scripts/archive/vhubCheckRouterState.ps1 -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/Modules/moduleBastion.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/Modules/moduleBastion.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/Modules/moduleVNet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/Modules/moduleVNet.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/Modules/moduleVNetAzFw.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/Modules/moduleVNetAzFw.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/Modules/moduleVWAN.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/Modules/moduleVWAN.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/Modules/moduleVWANHub.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/Modules/moduleVWANHub.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/Orchestration/VWAN-With-N-VNET-Spokes-With-Bastion.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/Orchestration/VWAN-With-N-VNET-Spokes-With-Bastion.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/VNET-AzFW-Subnets.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/VNET-AzFW-Subnets.bicep -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Bicep/VNET-AzFW-Subnets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Bicep/VNET-AzFW-Subnets.json -------------------------------------------------------------------------------- /Azure/Infra-as-Code/Terraform/VWAN/VWAN-Multi-Hub.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Infra-as-Code/Terraform/VWAN/VWAN-Multi-Hub.tf -------------------------------------------------------------------------------- /Azure/Policy/CostCentreTagAllowedValues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Policy/CostCentreTagAllowedValues.json -------------------------------------------------------------------------------- /Azure/Policy/DateCreated/Definitions/Mod-DateCreated-Tag-RSGs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Policy/DateCreated/Definitions/Mod-DateCreated-Tag-RSGs.json -------------------------------------------------------------------------------- /Azure/Policy/DateCreated/Definitions/Mod-DateCreated-Tag-Res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Policy/DateCreated/Definitions/Mod-DateCreated-Tag-Res.json -------------------------------------------------------------------------------- /Azure/Policy/DateCreated/Initiative-Definitions/Mod-DateCreated-Tag-All.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Policy/DateCreated/Initiative-Definitions/Mod-DateCreated-Tag-All.json -------------------------------------------------------------------------------- /Azure/Policy/Deny-VNET-Peering-Cross-Subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Policy/Deny-VNET-Peering-Cross-Subscription.json -------------------------------------------------------------------------------- /Azure/Policy/DeployBudgetForAllSubscriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Policy/DeployBudgetForAllSubscriptions.json -------------------------------------------------------------------------------- /Azure/Policy/DeployBudgetForAllSubscriptionsSandbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Policy/DeployBudgetForAllSubscriptionsSandbox.json -------------------------------------------------------------------------------- /Azure/Policy/DeployDependencyAgentForWindowsVMsIncludingWVDWin10MS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Policy/DeployDependencyAgentForWindowsVMsIncludingWVDWin10MS.json -------------------------------------------------------------------------------- /Azure/Policy/DeployLogAnalyticsAgentForWindowsVMsIncludingWVDWin10MS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Policy/DeployLogAnalyticsAgentForWindowsVMsIncludingWVDWin10MS.json -------------------------------------------------------------------------------- /Azure/Policy/NICsWithPrivateIPsNotSetToStatic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Policy/NICsWithPrivateIPsNotSetToStatic.json -------------------------------------------------------------------------------- /Azure/Policy/PublicIPsNotSetToStatic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Policy/PublicIPsNotSetToStatic.json -------------------------------------------------------------------------------- /Azure/PowerShell/Billing/Invoke-EABillingSPNPermissionsSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/PowerShell/Billing/Invoke-EABillingSPNPermissionsSetup.ps1 -------------------------------------------------------------------------------- /Azure/PowerShell/Enterprise-scale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/PowerShell/Enterprise-scale/README.md -------------------------------------------------------------------------------- /Azure/PowerShell/Enterprise-scale/Wipe-ESLZAzTenant.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/PowerShell/Enterprise-scale/Wipe-ESLZAzTenant.ps1 -------------------------------------------------------------------------------- /Azure/PowerShell/Enterprise-scale/media/eslz-clean-script-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/PowerShell/Enterprise-scale/media/eslz-clean-script-example.png -------------------------------------------------------------------------------- /Azure/PowerShell/Enterprise-scale/media/eslz-clean-script-failsafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/PowerShell/Enterprise-scale/media/eslz-clean-script-failsafe.png -------------------------------------------------------------------------------- /Azure/PowerShell/Partner Tools/LinkMPNPartnerIDToAzureAccountV1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/PowerShell/Partner Tools/LinkMPNPartnerIDToAzureAccountV1.ps1 -------------------------------------------------------------------------------- /Azure/PowerShell/Partner Tools/LinkMPNPartnerIDToAzureAccountV2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/PowerShell/Partner Tools/LinkMPNPartnerIDToAzureAccountV2.ps1 -------------------------------------------------------------------------------- /Azure/PowerShell/RBAC/Get-AllBuiltInRBACRolesWithCreadtedAndUpdatedDates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/PowerShell/RBAC/Get-AllBuiltInRBACRolesWithCreadtedAndUpdatedDates.ps1 -------------------------------------------------------------------------------- /Azure/PowerShell/Subscriptions/GainAccessToAllSubscriptionsInTenant.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/PowerShell/Subscriptions/GainAccessToAllSubscriptionsInTenant.ps1 -------------------------------------------------------------------------------- /Azure/PowerShell/Subscriptions/GatherAllSubscriptionsInTenant.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/PowerShell/Subscriptions/GatherAllSubscriptionsInTenant.ps1 -------------------------------------------------------------------------------- /Azure/PowerShell/Tags/ApplyTagsAllResourceTypesInResourceGroupV1.0.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/PowerShell/Tags/ApplyTagsAllResourceTypesInResourceGroupV1.0.ps1 -------------------------------------------------------------------------------- /Azure/PowerShell/WVD/jt-wvd-choco-app-installs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/PowerShell/WVD/jt-wvd-choco-app-installs.ps1 -------------------------------------------------------------------------------- /Azure/PowerShell/WVD/jt-wvd-custom-installs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/PowerShell/WVD/jt-wvd-custom-installs.ps1 -------------------------------------------------------------------------------- /Azure/Resource Graph/Dashboards/exchangeGoddessARGDashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Resource Graph/Dashboards/exchangeGoddessARGDashboard.json -------------------------------------------------------------------------------- /Azure/Resource Graph/Queries/list-all-vnets-and-subnets-with-cidr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Resource Graph/Queries/list-all-vnets-and-subnets-with-cidr.txt -------------------------------------------------------------------------------- /Azure/Resource Graph/Queries/list-specifed-tag-values.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Resource Graph/Queries/list-specifed-tag-values.txt -------------------------------------------------------------------------------- /Azure/Resource Graph/Queries/resource-container-change-histroy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Resource Graph/Queries/resource-container-change-histroy.txt -------------------------------------------------------------------------------- /Azure/Resource Graph/Queries/security-center-assesments-unhealthy-by-resource-group.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Resource Graph/Queries/security-center-assesments-unhealthy-by-resource-group.txt -------------------------------------------------------------------------------- /Azure/Resource Graph/Queries/subscription-tenant-and-offer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Resource Graph/Queries/subscription-tenant-and-offer.txt -------------------------------------------------------------------------------- /Azure/Resource Graph/Queries/udr-bgp-propogation-disabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Resource Graph/Queries/udr-bgp-propogation-disabled.txt -------------------------------------------------------------------------------- /Azure/Resource Graph/Queries/vnet-dns-server-incorrect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Azure/Resource Graph/Queries/vnet-dns-server-incorrect.txt -------------------------------------------------------------------------------- /AzureDevOps/TerraformDemoPipelines/ES-Terraform-Community/AzureDevOpsBuilds/Terraform Import.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/AzureDevOps/TerraformDemoPipelines/ES-Terraform-Community/AzureDevOpsBuilds/Terraform Import.yml -------------------------------------------------------------------------------- /AzureDevOps/TerraformDemoPipelines/ES-Terraform-Community/AzureDevOpsBuilds/Terraform Plan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/AzureDevOps/TerraformDemoPipelines/ES-Terraform-Community/AzureDevOpsBuilds/Terraform Plan.yml -------------------------------------------------------------------------------- /AzureDevOps/TerraformDemoPipelines/ES-Terraform-Community/AzureDevOpsBuilds/Terraform Status Check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/AzureDevOps/TerraformDemoPipelines/ES-Terraform-Community/AzureDevOpsBuilds/Terraform Status Check.yml -------------------------------------------------------------------------------- /AzureDevOps/TerraformDemoPipelines/ES-Terraform-Community/AzureDevOpsReleases/Terraform Apply.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/AzureDevOps/TerraformDemoPipelines/ES-Terraform-Community/AzureDevOpsReleases/Terraform Apply.yml -------------------------------------------------------------------------------- /AzureDevOps/TerraformDemoPipelines/ES-Terraform-Community/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/AzureDevOps/TerraformDemoPipelines/ES-Terraform-Community/README.md -------------------------------------------------------------------------------- /AzureDevOps/TerraformDemoPipelines/ES-Terraform-Community/pwsh/tfAnnotate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/AzureDevOps/TerraformDemoPipelines/ES-Terraform-Community/pwsh/tfAnnotate.ps1 -------------------------------------------------------------------------------- /Chocolatey/JTNewBuildChoco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Chocolatey/JTNewBuildChoco.txt -------------------------------------------------------------------------------- /Chocolatey/JTPWSHProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Chocolatey/JTPWSHProfile.ps1 -------------------------------------------------------------------------------- /Chocolatey/windowsTerminalProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/Chocolatey/windowsTerminalProfile.json -------------------------------------------------------------------------------- /GitHub/Actions/Wiki Sync/sync-wiki-cp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/GitHub/Actions/Wiki Sync/sync-wiki-cp.yml -------------------------------------------------------------------------------- /GitHub/Actions/Wiki Sync/sync-wiki-rsync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/GitHub/Actions/Wiki Sync/sync-wiki-rsync.yml -------------------------------------------------------------------------------- /GitHub/PowerShell/Invoke-GitHubReleaseFetcher.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/GitHub/PowerShell/Invoke-GitHubReleaseFetcher.ps1 -------------------------------------------------------------------------------- /GitHub/PowerShell/gh-release-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/GitHub/PowerShell/gh-release-checker.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtracey93/PublicScripts/HEAD/README.md --------------------------------------------------------------------------------