├── .gitignore ├── .vscode └── settings.json ├── ARM-Templates ├── blueprints │ ├── blueprint-assignment.json │ └── bp-assignment │ │ └── appnetwork-assignment.json ├── boilerplate.json ├── compute │ ├── aci.json │ ├── aks-cluster │ │ ├── aks.bicep │ │ ├── aks.json │ │ └── params.json │ ├── appservice-with-vnet.template.json │ ├── simple-vm │ │ ├── params.json │ │ └── simple-vm.json │ └── vm-module-property-copy-backup.json ├── data │ └── postgres │ │ ├── main.bicep │ │ ├── main.json │ │ └── postrgresSql.json ├── deployment-scripts │ ├── deploymentScript-101.json │ ├── deploymentScript-basic.json │ ├── deploymentScript-customStorageAndACI.json │ ├── deploymentScript │ │ ├── deploymentScript-api-review-uri.json │ │ └── deploymentScript-api-review.json │ └── scripttemplate.json ├── governance │ ├── common-policy-def.json │ ├── mg-creation.json │ └── subscription-create.json ├── iot │ └── azureDeploy.json ├── keyvault-basic │ ├── key-vault.template.json │ ├── params.json │ └── what-if-63 │ │ ├── what-if-63.json │ │ └── what-if-63.parameters.json ├── language-service │ ├── LanguageServiceExamples │ │ ├── linked-template-parameters.json │ │ ├── property-copy-snippet.json │ │ ├── reference-function.json │ │ ├── resource-snippet.json │ │ ├── resource-types.txt │ │ ├── test.jsonc │ │ ├── type-completion.json │ │ └── udf-signature-completion.json │ ├── demoDeploy │ │ ├── params.json │ │ └── vm-stack.json │ ├── language-service-p1.template.json │ └── language-service-p2.json ├── log-analytics-and-monitoring │ ├── activity-log-to-la │ │ ├── activity-log-log-analytics.json │ │ └── params.json │ ├── insight-alerts │ │ ├── azuredeploy.json │ │ └── params.json │ ├── la-workspace-full │ │ ├── log-analytics-workspace-data-source-only.json │ │ ├── log-analytics-workspace-full.json │ │ ├── params.json │ │ └── wasteland.json │ ├── la-workspace-updated.json │ └── la-workspace.json ├── networking │ ├── bastion-host-original.json │ ├── bastion-host.bicep │ ├── bastion-host.json │ ├── enable-nsg-flow-logs.json │ ├── new-vnet-and-peering-to-hub.json │ ├── nsg.json │ ├── peer-on-hub-side.json │ ├── vnet-peering.json │ ├── vnet-with-dynamic-subnets.json │ └── vnet.json ├── scratch.json ├── smallest-template.json ├── solutions │ ├── function-in-vnet │ │ ├── azureDeploy.json │ │ └── azureDeploy.parameters.json │ └── server-farm │ │ ├── artifacts │ │ └── certificate.json │ │ ├── azureDeploy.json │ │ └── azureDeploy2.json ├── storage │ ├── storage-and-params-file │ │ ├── linked-storage-with-params.json │ │ ├── parameters.json │ │ └── template.json │ ├── storage-with-params.bicep │ ├── storage-with-params.json │ ├── storage-with-secure-string.json │ └── storage-without-params.json └── testing │ ├── 0dot11testing.json │ ├── basicLinkedTemplateSpec │ ├── artifacts │ │ ├── otherTemp.json │ │ └── storage.json │ └── mainTemplate.json │ ├── budget.json │ ├── copyZero │ └── azureDeploy.json │ ├── deploy-template-spec.json │ ├── deployments-object.json │ ├── hyphen-outputs.json │ ├── hyphen-param-prop.json │ ├── ipaddress-loop │ ├── azureDeploy.json │ └── take2.json │ ├── jon-gao-test.json │ ├── linked-arm-template-test.json │ ├── linked-template-relPath │ ├── children │ │ ├── grandchildren │ │ │ └── nestedGrandchild.json │ │ └── nestedChild.json │ ├── linkedTemplate.json │ ├── mainTemplate.json │ └── stage-and-deploy.ps1 │ ├── list-star-testing.json │ ├── marel-test │ ├── original.json │ └── postTsCreation.json │ ├── mg-policy.json │ ├── min-ds-permissions-with-obo │ ├── deployment-principal-roleDef.json │ ├── login-run-script.ps1 │ ├── main.bicep │ └── main.json │ ├── mix-param-schema │ ├── rg-params.json │ └── sub-template.json │ ├── module-with-what-if.json │ ├── multi-line-gh-issue-cli-12909.json │ ├── mutli-line-script-for-ts.json │ ├── nested-with-scope-property.json │ ├── parameters-with-metadata │ ├── azureDeploy.json │ └── azureDeploy.parameters.json │ ├── reference-hack-in-nested.json │ ├── sidney-extension-bugs.json │ ├── simple-copy.json │ ├── simple-secure-string.json │ ├── sub-create.json │ ├── sub-validation-test.json │ ├── tempalte-spec-module.json │ ├── tenantDeploymentToMg.json │ ├── test-api-profile.json │ ├── test-looping.json │ ├── test-outputs-and-reference.json │ ├── test-rg-schema.json │ ├── test-scoped-resources.json │ ├── test-snippets.json │ ├── test-sub-property.json │ ├── test-tags-on-deployment.json │ ├── test-variable-for-default-location.json │ ├── test.json │ ├── type-as-param.json │ └── vnet-sorting-noise-repro │ ├── main.bicep │ ├── old.bicep │ ├── old.json │ ├── step1.json │ ├── step2-noise-no-addition.json │ └── step3-no-noise-with-new-subnet.json ├── bicep ├── aks-role-assign │ ├── cluster-role-assign.bicep │ └── main.bicep ├── barmory │ ├── tests.bicep │ └── tests.json ├── complex-loops-vnet-peering │ ├── main.bicep │ ├── params.json │ ├── vnet-peer.template.bicep │ └── vnet-peering-processor.bicep ├── cosmos-404 │ ├── main.bicep │ ├── main.json │ └── test.bicep ├── cross-scope-testing │ ├── main.bicep │ ├── main.json │ └── module.bicep ├── cross-sub-test │ ├── main.bicep │ └── simple-module.bicep ├── deployment-script-no-auth │ ├── main.bicep │ └── main.json ├── hello-world │ ├── test.bicep │ └── test.json ├── justinyoo-refactor │ ├── main.bicep │ └── main.json ├── kv-reference │ ├── main.bicep │ └── module.bicep ├── looping-proposal │ ├── loops.txt │ ├── misc │ │ └── appendix.txt │ ├── option1.md │ ├── option2.md │ └── option3.md ├── markruss-springignite-21 │ ├── main.bicep │ └── website.bicep ├── multi-line-script │ ├── create-cert.ps1 │ └── create-vault.bicep ├── nicolaj-example │ ├── main.bicep │ └── parameters.bicep ├── policy-definition │ ├── azureDeploy.json │ ├── main.bicep │ └── main.json ├── scratch │ ├── azureDeploy.json │ ├── bar.bicep │ ├── main.bicep │ ├── main.json │ └── module.bicep ├── tests │ ├── modules │ │ ├── main.bicep │ │ ├── main.json │ │ └── network.bicep │ ├── nested-deployment-hack │ │ ├── main.bicep │ │ └── main.json │ ├── no-allowed-test │ │ ├── main.bicep │ │ └── main.json │ ├── not-working │ │ └── 101-vm-simple-zones │ │ │ └── main.bicep │ ├── secure-test │ │ ├── main.bicep │ │ └── main.json │ ├── test-sub-resourceId │ │ ├── main.bicep │ │ └── main.json │ └── ts-deploy-test │ │ ├── main.bicep │ │ ├── main.json │ │ └── main.parameters.json ├── tutorial-runthrough │ ├── main.bicep │ ├── main.json │ ├── modules │ │ └── network.bicep │ └── test.bicep ├── tutorial-walkthrough │ ├── main.bicep │ └── main.json ├── tutorial │ ├── main.bicep │ ├── main.json │ └── storage.bicep ├── web-app-sln │ ├── datatier.bicep │ ├── main.bicep │ ├── main.json │ └── webapp.bicep ├── website │ ├── appServiceContainer.bicep │ ├── main.bicep │ ├── main.json │ └── sqlServerAndDb.bicep ├── wep-app-swagger-fixes │ └── main.bicep └── whitwaldo │ ├── main.bicep │ └── main.json ├── experiments ├── DINE-policy-assign-bp │ ├── blueprint-assignment.json │ └── policy.jsonc ├── aine-policy-subscription │ └── policy.json ├── blueprint-custom-role │ ├── built-ins │ │ ├── bp-contributor.json │ │ └── bp-operator.json │ ├── for-testing │ │ ├── assign-custom-role-bp-operator.ps1 │ │ ├── blueprint-contributor-custom-role.json │ │ ├── blueprint-operator-custom-role.json │ │ ├── create-definition-custom-role-bp-contributor.ps1 │ │ ├── foundation-with-pci │ │ │ ├── Artifacts │ │ │ │ ├── 12c4d890-a0a2-4ba9-b232-210cd3b6a057.json │ │ │ │ ├── 12c4d890-a0a2-4ba9-b232-210cd3b6a2a0.json │ │ │ │ ├── 35fefdfd-13d3-4bc1-a3c6-561b0dc0f75b.json │ │ │ │ ├── a1d69d60-3bc3-46eb-a05e-1abc7f7ef4ba.json │ │ │ │ ├── bc1f2ee2-7872-4833-b358-903123de3733.json │ │ │ │ ├── bc1f2ee2-7872-4833-b358-903123de397c.json │ │ │ │ ├── bc1f2ee2-7872-4833-b358-903123de3bc5.json │ │ │ │ ├── bc1f2ee2-7872-4833-b358-903123de3e0e.json │ │ │ │ └── policy-tag-artifact.json │ │ │ ├── Blueprint.json │ │ │ └── assign.json │ │ ├── login-with-bp-operator.ps1 │ │ └── test-gets-on-random-mgs.ps1 │ └── unused-roles.txt ├── blueprint-params-from-file │ ├── assignBlueprint.ps1 │ ├── params.json │ └── params.psd1 ├── blueprint-with-array │ ├── assign.ps1 │ ├── blueprint.json │ └── role-assign-array.json ├── blueprint-with-deny-exception │ ├── assign.ps1 │ ├── assignment.json │ ├── blueprint.json │ └── storage.json ├── deploymentScripts-custom-role │ ├── misc │ │ ├── full-roles.json │ │ └── notes.md │ ├── roleDefinitions │ │ ├── roleForMI.json │ │ └── roleForSPN.json │ └── testing │ │ ├── deployment-script-template.json │ │ ├── deployment-script-template.parameters.json │ │ └── test-role.ps1 ├── dine-policy-bp-pt2 │ └── policy.json ├── eightmb-template.json ├── initiative-test │ ├── blueprint.json │ └── initiative.json ├── packaging-user-study │ ├── christian-agenda.md │ ├── deployment-cmdlets │ │ ├── cli │ │ │ ├── mg-cli.sh │ │ │ ├── rg-cli.sh │ │ │ └── sub-cli.sh │ │ └── ps │ │ │ ├── mg-ps.ps1 │ │ │ ├── rg-ps.ps1 │ │ │ └── sub-ps.ps1 │ ├── templatePackage-relative │ │ ├── artifacts │ │ │ └── storageAccount.json │ │ └── mainTemplate.json │ └── templatePackage │ │ ├── artifacts │ │ └── storageAccount.json │ │ └── mainTemplate.json ├── pass-artifacts │ ├── blueprint.json │ ├── main.js │ ├── storage.json │ └── vm-using-storage.json ├── passing-artifact-values.json │ ├── app-service.json │ └── vnet-artifact.json ├── secureString-in-bp │ └── assign.json ├── templates-slash-service-topology.json ├── using-functions │ ├── blueprint.json │ ├── rg-template.json │ └── sub-template.json └── vnet-peering │ ├── artifacts │ └── peer-new-vnet-to-hub.json │ └── blueprint.json ├── misc └── clean-subscription.ps1 ├── policies ├── delete-all-policies.ps1 ├── dine-bp-assign-testing │ ├── dine-bp-assign.policydefinition │ └── params.json └── test-ps-workflow │ ├── params.json │ └── test-ps-workflow.policydefinition.json └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ARM-Templates/blueprints/blueprint-assignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/blueprints/blueprint-assignment.json -------------------------------------------------------------------------------- /ARM-Templates/blueprints/bp-assignment/appnetwork-assignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/blueprints/bp-assignment/appnetwork-assignment.json -------------------------------------------------------------------------------- /ARM-Templates/boilerplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/boilerplate.json -------------------------------------------------------------------------------- /ARM-Templates/compute/aci.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/compute/aci.json -------------------------------------------------------------------------------- /ARM-Templates/compute/aks-cluster/aks.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/compute/aks-cluster/aks.bicep -------------------------------------------------------------------------------- /ARM-Templates/compute/aks-cluster/aks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/compute/aks-cluster/aks.json -------------------------------------------------------------------------------- /ARM-Templates/compute/aks-cluster/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/compute/aks-cluster/params.json -------------------------------------------------------------------------------- /ARM-Templates/compute/appservice-with-vnet.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/compute/appservice-with-vnet.template.json -------------------------------------------------------------------------------- /ARM-Templates/compute/simple-vm/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/compute/simple-vm/params.json -------------------------------------------------------------------------------- /ARM-Templates/compute/simple-vm/simple-vm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/compute/simple-vm/simple-vm.json -------------------------------------------------------------------------------- /ARM-Templates/compute/vm-module-property-copy-backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/compute/vm-module-property-copy-backup.json -------------------------------------------------------------------------------- /ARM-Templates/data/postgres/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/data/postgres/main.bicep -------------------------------------------------------------------------------- /ARM-Templates/data/postgres/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/data/postgres/main.json -------------------------------------------------------------------------------- /ARM-Templates/data/postgres/postrgresSql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/data/postgres/postrgresSql.json -------------------------------------------------------------------------------- /ARM-Templates/deployment-scripts/deploymentScript-101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/deployment-scripts/deploymentScript-101.json -------------------------------------------------------------------------------- /ARM-Templates/deployment-scripts/deploymentScript-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/deployment-scripts/deploymentScript-basic.json -------------------------------------------------------------------------------- /ARM-Templates/deployment-scripts/deploymentScript-customStorageAndACI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/deployment-scripts/deploymentScript-customStorageAndACI.json -------------------------------------------------------------------------------- /ARM-Templates/deployment-scripts/deploymentScript/deploymentScript-api-review-uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/deployment-scripts/deploymentScript/deploymentScript-api-review-uri.json -------------------------------------------------------------------------------- /ARM-Templates/deployment-scripts/deploymentScript/deploymentScript-api-review.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/deployment-scripts/deploymentScript/deploymentScript-api-review.json -------------------------------------------------------------------------------- /ARM-Templates/deployment-scripts/scripttemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/deployment-scripts/scripttemplate.json -------------------------------------------------------------------------------- /ARM-Templates/governance/common-policy-def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/governance/common-policy-def.json -------------------------------------------------------------------------------- /ARM-Templates/governance/mg-creation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/governance/mg-creation.json -------------------------------------------------------------------------------- /ARM-Templates/governance/subscription-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/governance/subscription-create.json -------------------------------------------------------------------------------- /ARM-Templates/iot/azureDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/iot/azureDeploy.json -------------------------------------------------------------------------------- /ARM-Templates/keyvault-basic/key-vault.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/keyvault-basic/key-vault.template.json -------------------------------------------------------------------------------- /ARM-Templates/keyvault-basic/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/keyvault-basic/params.json -------------------------------------------------------------------------------- /ARM-Templates/keyvault-basic/what-if-63/what-if-63.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/keyvault-basic/what-if-63/what-if-63.json -------------------------------------------------------------------------------- /ARM-Templates/keyvault-basic/what-if-63/what-if-63.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/keyvault-basic/what-if-63/what-if-63.parameters.json -------------------------------------------------------------------------------- /ARM-Templates/language-service/LanguageServiceExamples/linked-template-parameters.json: -------------------------------------------------------------------------------- 1 | not sure what to show here... -------------------------------------------------------------------------------- /ARM-Templates/language-service/LanguageServiceExamples/property-copy-snippet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/language-service/LanguageServiceExamples/property-copy-snippet.json -------------------------------------------------------------------------------- /ARM-Templates/language-service/LanguageServiceExamples/reference-function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/language-service/LanguageServiceExamples/reference-function.json -------------------------------------------------------------------------------- /ARM-Templates/language-service/LanguageServiceExamples/resource-snippet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/language-service/LanguageServiceExamples/resource-snippet.json -------------------------------------------------------------------------------- /ARM-Templates/language-service/LanguageServiceExamples/resource-types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/language-service/LanguageServiceExamples/resource-types.txt -------------------------------------------------------------------------------- /ARM-Templates/language-service/LanguageServiceExamples/test.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/language-service/LanguageServiceExamples/test.jsonc -------------------------------------------------------------------------------- /ARM-Templates/language-service/LanguageServiceExamples/type-completion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/language-service/LanguageServiceExamples/type-completion.json -------------------------------------------------------------------------------- /ARM-Templates/language-service/LanguageServiceExamples/udf-signature-completion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/language-service/LanguageServiceExamples/udf-signature-completion.json -------------------------------------------------------------------------------- /ARM-Templates/language-service/demoDeploy/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/language-service/demoDeploy/params.json -------------------------------------------------------------------------------- /ARM-Templates/language-service/demoDeploy/vm-stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/language-service/demoDeploy/vm-stack.json -------------------------------------------------------------------------------- /ARM-Templates/language-service/language-service-p1.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/language-service/language-service-p1.template.json -------------------------------------------------------------------------------- /ARM-Templates/language-service/language-service-p2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/language-service/language-service-p2.json -------------------------------------------------------------------------------- /ARM-Templates/log-analytics-and-monitoring/activity-log-to-la/activity-log-log-analytics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/log-analytics-and-monitoring/activity-log-to-la/activity-log-log-analytics.json -------------------------------------------------------------------------------- /ARM-Templates/log-analytics-and-monitoring/activity-log-to-la/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/log-analytics-and-monitoring/activity-log-to-la/params.json -------------------------------------------------------------------------------- /ARM-Templates/log-analytics-and-monitoring/insight-alerts/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/log-analytics-and-monitoring/insight-alerts/azuredeploy.json -------------------------------------------------------------------------------- /ARM-Templates/log-analytics-and-monitoring/insight-alerts/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/log-analytics-and-monitoring/insight-alerts/params.json -------------------------------------------------------------------------------- /ARM-Templates/log-analytics-and-monitoring/la-workspace-full/log-analytics-workspace-data-source-only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/log-analytics-and-monitoring/la-workspace-full/log-analytics-workspace-data-source-only.json -------------------------------------------------------------------------------- /ARM-Templates/log-analytics-and-monitoring/la-workspace-full/log-analytics-workspace-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/log-analytics-and-monitoring/la-workspace-full/log-analytics-workspace-full.json -------------------------------------------------------------------------------- /ARM-Templates/log-analytics-and-monitoring/la-workspace-full/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/log-analytics-and-monitoring/la-workspace-full/params.json -------------------------------------------------------------------------------- /ARM-Templates/log-analytics-and-monitoring/la-workspace-full/wasteland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/log-analytics-and-monitoring/la-workspace-full/wasteland.json -------------------------------------------------------------------------------- /ARM-Templates/log-analytics-and-monitoring/la-workspace-updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/log-analytics-and-monitoring/la-workspace-updated.json -------------------------------------------------------------------------------- /ARM-Templates/log-analytics-and-monitoring/la-workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/log-analytics-and-monitoring/la-workspace.json -------------------------------------------------------------------------------- /ARM-Templates/networking/bastion-host-original.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/networking/bastion-host-original.json -------------------------------------------------------------------------------- /ARM-Templates/networking/bastion-host.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/networking/bastion-host.bicep -------------------------------------------------------------------------------- /ARM-Templates/networking/bastion-host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/networking/bastion-host.json -------------------------------------------------------------------------------- /ARM-Templates/networking/enable-nsg-flow-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/networking/enable-nsg-flow-logs.json -------------------------------------------------------------------------------- /ARM-Templates/networking/new-vnet-and-peering-to-hub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/networking/new-vnet-and-peering-to-hub.json -------------------------------------------------------------------------------- /ARM-Templates/networking/nsg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/networking/nsg.json -------------------------------------------------------------------------------- /ARM-Templates/networking/peer-on-hub-side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/networking/peer-on-hub-side.json -------------------------------------------------------------------------------- /ARM-Templates/networking/vnet-peering.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/networking/vnet-peering.json -------------------------------------------------------------------------------- /ARM-Templates/networking/vnet-with-dynamic-subnets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/networking/vnet-with-dynamic-subnets.json -------------------------------------------------------------------------------- /ARM-Templates/networking/vnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/networking/vnet.json -------------------------------------------------------------------------------- /ARM-Templates/scratch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/scratch.json -------------------------------------------------------------------------------- /ARM-Templates/smallest-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/smallest-template.json -------------------------------------------------------------------------------- /ARM-Templates/solutions/function-in-vnet/azureDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/solutions/function-in-vnet/azureDeploy.json -------------------------------------------------------------------------------- /ARM-Templates/solutions/function-in-vnet/azureDeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/solutions/function-in-vnet/azureDeploy.parameters.json -------------------------------------------------------------------------------- /ARM-Templates/solutions/server-farm/artifacts/certificate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/solutions/server-farm/artifacts/certificate.json -------------------------------------------------------------------------------- /ARM-Templates/solutions/server-farm/azureDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/solutions/server-farm/azureDeploy.json -------------------------------------------------------------------------------- /ARM-Templates/solutions/server-farm/azureDeploy2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/solutions/server-farm/azureDeploy2.json -------------------------------------------------------------------------------- /ARM-Templates/storage/storage-and-params-file/linked-storage-with-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/storage/storage-and-params-file/linked-storage-with-params.json -------------------------------------------------------------------------------- /ARM-Templates/storage/storage-and-params-file/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/storage/storage-and-params-file/parameters.json -------------------------------------------------------------------------------- /ARM-Templates/storage/storage-and-params-file/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/storage/storage-and-params-file/template.json -------------------------------------------------------------------------------- /ARM-Templates/storage/storage-with-params.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/storage/storage-with-params.bicep -------------------------------------------------------------------------------- /ARM-Templates/storage/storage-with-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/storage/storage-with-params.json -------------------------------------------------------------------------------- /ARM-Templates/storage/storage-with-secure-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/storage/storage-with-secure-string.json -------------------------------------------------------------------------------- /ARM-Templates/storage/storage-without-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/storage/storage-without-params.json -------------------------------------------------------------------------------- /ARM-Templates/testing/0dot11testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/0dot11testing.json -------------------------------------------------------------------------------- /ARM-Templates/testing/basicLinkedTemplateSpec/artifacts/otherTemp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/basicLinkedTemplateSpec/artifacts/otherTemp.json -------------------------------------------------------------------------------- /ARM-Templates/testing/basicLinkedTemplateSpec/artifacts/storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/basicLinkedTemplateSpec/artifacts/storage.json -------------------------------------------------------------------------------- /ARM-Templates/testing/basicLinkedTemplateSpec/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/basicLinkedTemplateSpec/mainTemplate.json -------------------------------------------------------------------------------- /ARM-Templates/testing/budget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/budget.json -------------------------------------------------------------------------------- /ARM-Templates/testing/copyZero/azureDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/copyZero/azureDeploy.json -------------------------------------------------------------------------------- /ARM-Templates/testing/deploy-template-spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/deploy-template-spec.json -------------------------------------------------------------------------------- /ARM-Templates/testing/deployments-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/deployments-object.json -------------------------------------------------------------------------------- /ARM-Templates/testing/hyphen-outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/hyphen-outputs.json -------------------------------------------------------------------------------- /ARM-Templates/testing/hyphen-param-prop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/hyphen-param-prop.json -------------------------------------------------------------------------------- /ARM-Templates/testing/ipaddress-loop/azureDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/ipaddress-loop/azureDeploy.json -------------------------------------------------------------------------------- /ARM-Templates/testing/ipaddress-loop/take2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/ipaddress-loop/take2.json -------------------------------------------------------------------------------- /ARM-Templates/testing/jon-gao-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/jon-gao-test.json -------------------------------------------------------------------------------- /ARM-Templates/testing/linked-arm-template-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/linked-arm-template-test.json -------------------------------------------------------------------------------- /ARM-Templates/testing/linked-template-relPath/children/grandchildren/nestedGrandchild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/linked-template-relPath/children/grandchildren/nestedGrandchild.json -------------------------------------------------------------------------------- /ARM-Templates/testing/linked-template-relPath/children/nestedChild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/linked-template-relPath/children/nestedChild.json -------------------------------------------------------------------------------- /ARM-Templates/testing/linked-template-relPath/linkedTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/linked-template-relPath/linkedTemplate.json -------------------------------------------------------------------------------- /ARM-Templates/testing/linked-template-relPath/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/linked-template-relPath/mainTemplate.json -------------------------------------------------------------------------------- /ARM-Templates/testing/linked-template-relPath/stage-and-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/linked-template-relPath/stage-and-deploy.ps1 -------------------------------------------------------------------------------- /ARM-Templates/testing/list-star-testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/list-star-testing.json -------------------------------------------------------------------------------- /ARM-Templates/testing/marel-test/original.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/marel-test/original.json -------------------------------------------------------------------------------- /ARM-Templates/testing/marel-test/postTsCreation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/marel-test/postTsCreation.json -------------------------------------------------------------------------------- /ARM-Templates/testing/mg-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/mg-policy.json -------------------------------------------------------------------------------- /ARM-Templates/testing/min-ds-permissions-with-obo/deployment-principal-roleDef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/min-ds-permissions-with-obo/deployment-principal-roleDef.json -------------------------------------------------------------------------------- /ARM-Templates/testing/min-ds-permissions-with-obo/login-run-script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/min-ds-permissions-with-obo/login-run-script.ps1 -------------------------------------------------------------------------------- /ARM-Templates/testing/min-ds-permissions-with-obo/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/min-ds-permissions-with-obo/main.bicep -------------------------------------------------------------------------------- /ARM-Templates/testing/min-ds-permissions-with-obo/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/min-ds-permissions-with-obo/main.json -------------------------------------------------------------------------------- /ARM-Templates/testing/mix-param-schema/rg-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/mix-param-schema/rg-params.json -------------------------------------------------------------------------------- /ARM-Templates/testing/mix-param-schema/sub-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/mix-param-schema/sub-template.json -------------------------------------------------------------------------------- /ARM-Templates/testing/module-with-what-if.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/module-with-what-if.json -------------------------------------------------------------------------------- /ARM-Templates/testing/multi-line-gh-issue-cli-12909.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/multi-line-gh-issue-cli-12909.json -------------------------------------------------------------------------------- /ARM-Templates/testing/mutli-line-script-for-ts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/mutli-line-script-for-ts.json -------------------------------------------------------------------------------- /ARM-Templates/testing/nested-with-scope-property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/nested-with-scope-property.json -------------------------------------------------------------------------------- /ARM-Templates/testing/parameters-with-metadata/azureDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/parameters-with-metadata/azureDeploy.json -------------------------------------------------------------------------------- /ARM-Templates/testing/parameters-with-metadata/azureDeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/parameters-with-metadata/azureDeploy.parameters.json -------------------------------------------------------------------------------- /ARM-Templates/testing/reference-hack-in-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/reference-hack-in-nested.json -------------------------------------------------------------------------------- /ARM-Templates/testing/sidney-extension-bugs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/sidney-extension-bugs.json -------------------------------------------------------------------------------- /ARM-Templates/testing/simple-copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/simple-copy.json -------------------------------------------------------------------------------- /ARM-Templates/testing/simple-secure-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/simple-secure-string.json -------------------------------------------------------------------------------- /ARM-Templates/testing/sub-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/sub-create.json -------------------------------------------------------------------------------- /ARM-Templates/testing/sub-validation-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/sub-validation-test.json -------------------------------------------------------------------------------- /ARM-Templates/testing/tempalte-spec-module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/tempalte-spec-module.json -------------------------------------------------------------------------------- /ARM-Templates/testing/tenantDeploymentToMg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/tenantDeploymentToMg.json -------------------------------------------------------------------------------- /ARM-Templates/testing/test-api-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/test-api-profile.json -------------------------------------------------------------------------------- /ARM-Templates/testing/test-looping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/test-looping.json -------------------------------------------------------------------------------- /ARM-Templates/testing/test-outputs-and-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/test-outputs-and-reference.json -------------------------------------------------------------------------------- /ARM-Templates/testing/test-rg-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/test-rg-schema.json -------------------------------------------------------------------------------- /ARM-Templates/testing/test-scoped-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/test-scoped-resources.json -------------------------------------------------------------------------------- /ARM-Templates/testing/test-snippets.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ARM-Templates/testing/test-sub-property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/test-sub-property.json -------------------------------------------------------------------------------- /ARM-Templates/testing/test-tags-on-deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/test-tags-on-deployment.json -------------------------------------------------------------------------------- /ARM-Templates/testing/test-variable-for-default-location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/test-variable-for-default-location.json -------------------------------------------------------------------------------- /ARM-Templates/testing/test.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ARM-Templates/testing/type-as-param.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/type-as-param.json -------------------------------------------------------------------------------- /ARM-Templates/testing/vnet-sorting-noise-repro/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/vnet-sorting-noise-repro/main.bicep -------------------------------------------------------------------------------- /ARM-Templates/testing/vnet-sorting-noise-repro/old.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/vnet-sorting-noise-repro/old.bicep -------------------------------------------------------------------------------- /ARM-Templates/testing/vnet-sorting-noise-repro/old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/vnet-sorting-noise-repro/old.json -------------------------------------------------------------------------------- /ARM-Templates/testing/vnet-sorting-noise-repro/step1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/vnet-sorting-noise-repro/step1.json -------------------------------------------------------------------------------- /ARM-Templates/testing/vnet-sorting-noise-repro/step2-noise-no-addition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/vnet-sorting-noise-repro/step2-noise-no-addition.json -------------------------------------------------------------------------------- /ARM-Templates/testing/vnet-sorting-noise-repro/step3-no-noise-with-new-subnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/ARM-Templates/testing/vnet-sorting-noise-repro/step3-no-noise-with-new-subnet.json -------------------------------------------------------------------------------- /bicep/aks-role-assign/cluster-role-assign.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/aks-role-assign/cluster-role-assign.bicep -------------------------------------------------------------------------------- /bicep/aks-role-assign/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/aks-role-assign/main.bicep -------------------------------------------------------------------------------- /bicep/barmory/tests.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/barmory/tests.bicep -------------------------------------------------------------------------------- /bicep/barmory/tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/barmory/tests.json -------------------------------------------------------------------------------- /bicep/complex-loops-vnet-peering/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/complex-loops-vnet-peering/main.bicep -------------------------------------------------------------------------------- /bicep/complex-loops-vnet-peering/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/complex-loops-vnet-peering/params.json -------------------------------------------------------------------------------- /bicep/complex-loops-vnet-peering/vnet-peer.template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/complex-loops-vnet-peering/vnet-peer.template.bicep -------------------------------------------------------------------------------- /bicep/complex-loops-vnet-peering/vnet-peering-processor.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/complex-loops-vnet-peering/vnet-peering-processor.bicep -------------------------------------------------------------------------------- /bicep/cosmos-404/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/cosmos-404/main.bicep -------------------------------------------------------------------------------- /bicep/cosmos-404/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/cosmos-404/main.json -------------------------------------------------------------------------------- /bicep/cosmos-404/test.bicep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bicep/cross-scope-testing/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/cross-scope-testing/main.bicep -------------------------------------------------------------------------------- /bicep/cross-scope-testing/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/cross-scope-testing/main.json -------------------------------------------------------------------------------- /bicep/cross-scope-testing/module.bicep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bicep/cross-sub-test/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/cross-sub-test/main.bicep -------------------------------------------------------------------------------- /bicep/cross-sub-test/simple-module.bicep: -------------------------------------------------------------------------------- 1 | targetScope = 'subscription' -------------------------------------------------------------------------------- /bicep/deployment-script-no-auth/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/deployment-script-no-auth/main.bicep -------------------------------------------------------------------------------- /bicep/deployment-script-no-auth/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/deployment-script-no-auth/main.json -------------------------------------------------------------------------------- /bicep/hello-world/test.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/hello-world/test.bicep -------------------------------------------------------------------------------- /bicep/hello-world/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/hello-world/test.json -------------------------------------------------------------------------------- /bicep/justinyoo-refactor/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/justinyoo-refactor/main.bicep -------------------------------------------------------------------------------- /bicep/justinyoo-refactor/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/justinyoo-refactor/main.json -------------------------------------------------------------------------------- /bicep/kv-reference/main.bicep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bicep/kv-reference/module.bicep: -------------------------------------------------------------------------------- 1 | param test string { 2 | secure: true 3 | } -------------------------------------------------------------------------------- /bicep/looping-proposal/loops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/looping-proposal/loops.txt -------------------------------------------------------------------------------- /bicep/looping-proposal/misc/appendix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/looping-proposal/misc/appendix.txt -------------------------------------------------------------------------------- /bicep/looping-proposal/option1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/looping-proposal/option1.md -------------------------------------------------------------------------------- /bicep/looping-proposal/option2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/looping-proposal/option2.md -------------------------------------------------------------------------------- /bicep/looping-proposal/option3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/looping-proposal/option3.md -------------------------------------------------------------------------------- /bicep/markruss-springignite-21/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/markruss-springignite-21/main.bicep -------------------------------------------------------------------------------- /bicep/markruss-springignite-21/website.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/markruss-springignite-21/website.bicep -------------------------------------------------------------------------------- /bicep/multi-line-script/create-cert.ps1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bicep/multi-line-script/create-vault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/multi-line-script/create-vault.bicep -------------------------------------------------------------------------------- /bicep/nicolaj-example/main.bicep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bicep/nicolaj-example/parameters.bicep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bicep/policy-definition/azureDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/policy-definition/azureDeploy.json -------------------------------------------------------------------------------- /bicep/policy-definition/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/policy-definition/main.bicep -------------------------------------------------------------------------------- /bicep/policy-definition/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/policy-definition/main.json -------------------------------------------------------------------------------- /bicep/scratch/azureDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/scratch/azureDeploy.json -------------------------------------------------------------------------------- /bicep/scratch/bar.bicep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bicep/scratch/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/scratch/main.bicep -------------------------------------------------------------------------------- /bicep/scratch/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/scratch/main.json -------------------------------------------------------------------------------- /bicep/scratch/module.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/scratch/module.bicep -------------------------------------------------------------------------------- /bicep/tests/modules/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tests/modules/main.bicep -------------------------------------------------------------------------------- /bicep/tests/modules/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tests/modules/main.json -------------------------------------------------------------------------------- /bicep/tests/modules/network.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tests/modules/network.bicep -------------------------------------------------------------------------------- /bicep/tests/nested-deployment-hack/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tests/nested-deployment-hack/main.bicep -------------------------------------------------------------------------------- /bicep/tests/nested-deployment-hack/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tests/nested-deployment-hack/main.json -------------------------------------------------------------------------------- /bicep/tests/no-allowed-test/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tests/no-allowed-test/main.bicep -------------------------------------------------------------------------------- /bicep/tests/no-allowed-test/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tests/no-allowed-test/main.json -------------------------------------------------------------------------------- /bicep/tests/not-working/101-vm-simple-zones/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tests/not-working/101-vm-simple-zones/main.bicep -------------------------------------------------------------------------------- /bicep/tests/secure-test/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tests/secure-test/main.bicep -------------------------------------------------------------------------------- /bicep/tests/secure-test/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tests/secure-test/main.json -------------------------------------------------------------------------------- /bicep/tests/test-sub-resourceId/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tests/test-sub-resourceId/main.bicep -------------------------------------------------------------------------------- /bicep/tests/test-sub-resourceId/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tests/test-sub-resourceId/main.json -------------------------------------------------------------------------------- /bicep/tests/ts-deploy-test/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tests/ts-deploy-test/main.bicep -------------------------------------------------------------------------------- /bicep/tests/ts-deploy-test/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tests/ts-deploy-test/main.json -------------------------------------------------------------------------------- /bicep/tests/ts-deploy-test/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tests/ts-deploy-test/main.parameters.json -------------------------------------------------------------------------------- /bicep/tutorial-runthrough/main.bicep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bicep/tutorial-runthrough/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tutorial-runthrough/main.json -------------------------------------------------------------------------------- /bicep/tutorial-runthrough/modules/network.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tutorial-runthrough/modules/network.bicep -------------------------------------------------------------------------------- /bicep/tutorial-runthrough/test.bicep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bicep/tutorial-walkthrough/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tutorial-walkthrough/main.bicep -------------------------------------------------------------------------------- /bicep/tutorial-walkthrough/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tutorial-walkthrough/main.json -------------------------------------------------------------------------------- /bicep/tutorial/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tutorial/main.bicep -------------------------------------------------------------------------------- /bicep/tutorial/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tutorial/main.json -------------------------------------------------------------------------------- /bicep/tutorial/storage.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/tutorial/storage.bicep -------------------------------------------------------------------------------- /bicep/web-app-sln/datatier.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/web-app-sln/datatier.bicep -------------------------------------------------------------------------------- /bicep/web-app-sln/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/web-app-sln/main.bicep -------------------------------------------------------------------------------- /bicep/web-app-sln/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/web-app-sln/main.json -------------------------------------------------------------------------------- /bicep/web-app-sln/webapp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/web-app-sln/webapp.bicep -------------------------------------------------------------------------------- /bicep/website/appServiceContainer.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/website/appServiceContainer.bicep -------------------------------------------------------------------------------- /bicep/website/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/website/main.bicep -------------------------------------------------------------------------------- /bicep/website/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/website/main.json -------------------------------------------------------------------------------- /bicep/website/sqlServerAndDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/website/sqlServerAndDb.bicep -------------------------------------------------------------------------------- /bicep/wep-app-swagger-fixes/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/wep-app-swagger-fixes/main.bicep -------------------------------------------------------------------------------- /bicep/whitwaldo/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/whitwaldo/main.bicep -------------------------------------------------------------------------------- /bicep/whitwaldo/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/bicep/whitwaldo/main.json -------------------------------------------------------------------------------- /experiments/DINE-policy-assign-bp/blueprint-assignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/DINE-policy-assign-bp/blueprint-assignment.json -------------------------------------------------------------------------------- /experiments/DINE-policy-assign-bp/policy.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/DINE-policy-assign-bp/policy.jsonc -------------------------------------------------------------------------------- /experiments/aine-policy-subscription/policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/aine-policy-subscription/policy.json -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/built-ins/bp-contributor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/built-ins/bp-contributor.json -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/built-ins/bp-operator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/built-ins/bp-operator.json -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/for-testing/assign-custom-role-bp-operator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/for-testing/assign-custom-role-bp-operator.ps1 -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/for-testing/blueprint-contributor-custom-role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/for-testing/blueprint-contributor-custom-role.json -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/for-testing/blueprint-operator-custom-role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/for-testing/blueprint-operator-custom-role.json -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/for-testing/create-definition-custom-role-bp-contributor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/for-testing/create-definition-custom-role-bp-contributor.ps1 -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/for-testing/foundation-with-pci/Artifacts/12c4d890-a0a2-4ba9-b232-210cd3b6a057.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/for-testing/foundation-with-pci/Artifacts/12c4d890-a0a2-4ba9-b232-210cd3b6a057.json -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/for-testing/foundation-with-pci/Artifacts/12c4d890-a0a2-4ba9-b232-210cd3b6a2a0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/for-testing/foundation-with-pci/Artifacts/12c4d890-a0a2-4ba9-b232-210cd3b6a2a0.json -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/for-testing/foundation-with-pci/Artifacts/35fefdfd-13d3-4bc1-a3c6-561b0dc0f75b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/for-testing/foundation-with-pci/Artifacts/35fefdfd-13d3-4bc1-a3c6-561b0dc0f75b.json -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/for-testing/foundation-with-pci/Artifacts/a1d69d60-3bc3-46eb-a05e-1abc7f7ef4ba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/for-testing/foundation-with-pci/Artifacts/a1d69d60-3bc3-46eb-a05e-1abc7f7ef4ba.json -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/for-testing/foundation-with-pci/Artifacts/bc1f2ee2-7872-4833-b358-903123de3733.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/for-testing/foundation-with-pci/Artifacts/bc1f2ee2-7872-4833-b358-903123de3733.json -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/for-testing/foundation-with-pci/Artifacts/bc1f2ee2-7872-4833-b358-903123de397c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/for-testing/foundation-with-pci/Artifacts/bc1f2ee2-7872-4833-b358-903123de397c.json -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/for-testing/foundation-with-pci/Artifacts/bc1f2ee2-7872-4833-b358-903123de3bc5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/for-testing/foundation-with-pci/Artifacts/bc1f2ee2-7872-4833-b358-903123de3bc5.json -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/for-testing/foundation-with-pci/Artifacts/bc1f2ee2-7872-4833-b358-903123de3e0e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/for-testing/foundation-with-pci/Artifacts/bc1f2ee2-7872-4833-b358-903123de3e0e.json -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/for-testing/foundation-with-pci/Artifacts/policy-tag-artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/for-testing/foundation-with-pci/Artifacts/policy-tag-artifact.json -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/for-testing/foundation-with-pci/Blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/for-testing/foundation-with-pci/Blueprint.json -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/for-testing/foundation-with-pci/assign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/for-testing/foundation-with-pci/assign.json -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/for-testing/login-with-bp-operator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/for-testing/login-with-bp-operator.ps1 -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/for-testing/test-gets-on-random-mgs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/for-testing/test-gets-on-random-mgs.ps1 -------------------------------------------------------------------------------- /experiments/blueprint-custom-role/unused-roles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-custom-role/unused-roles.txt -------------------------------------------------------------------------------- /experiments/blueprint-params-from-file/assignBlueprint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-params-from-file/assignBlueprint.ps1 -------------------------------------------------------------------------------- /experiments/blueprint-params-from-file/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-params-from-file/params.json -------------------------------------------------------------------------------- /experiments/blueprint-params-from-file/params.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-params-from-file/params.psd1 -------------------------------------------------------------------------------- /experiments/blueprint-with-array/assign.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-with-array/assign.ps1 -------------------------------------------------------------------------------- /experiments/blueprint-with-array/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-with-array/blueprint.json -------------------------------------------------------------------------------- /experiments/blueprint-with-array/role-assign-array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-with-array/role-assign-array.json -------------------------------------------------------------------------------- /experiments/blueprint-with-deny-exception/assign.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-with-deny-exception/assign.ps1 -------------------------------------------------------------------------------- /experiments/blueprint-with-deny-exception/assignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-with-deny-exception/assignment.json -------------------------------------------------------------------------------- /experiments/blueprint-with-deny-exception/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-with-deny-exception/blueprint.json -------------------------------------------------------------------------------- /experiments/blueprint-with-deny-exception/storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/blueprint-with-deny-exception/storage.json -------------------------------------------------------------------------------- /experiments/deploymentScripts-custom-role/misc/full-roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/deploymentScripts-custom-role/misc/full-roles.json -------------------------------------------------------------------------------- /experiments/deploymentScripts-custom-role/misc/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/deploymentScripts-custom-role/misc/notes.md -------------------------------------------------------------------------------- /experiments/deploymentScripts-custom-role/roleDefinitions/roleForMI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/deploymentScripts-custom-role/roleDefinitions/roleForMI.json -------------------------------------------------------------------------------- /experiments/deploymentScripts-custom-role/roleDefinitions/roleForSPN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/deploymentScripts-custom-role/roleDefinitions/roleForSPN.json -------------------------------------------------------------------------------- /experiments/deploymentScripts-custom-role/testing/deployment-script-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/deploymentScripts-custom-role/testing/deployment-script-template.json -------------------------------------------------------------------------------- /experiments/deploymentScripts-custom-role/testing/deployment-script-template.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/deploymentScripts-custom-role/testing/deployment-script-template.parameters.json -------------------------------------------------------------------------------- /experiments/deploymentScripts-custom-role/testing/test-role.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/deploymentScripts-custom-role/testing/test-role.ps1 -------------------------------------------------------------------------------- /experiments/dine-policy-bp-pt2/policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/dine-policy-bp-pt2/policy.json -------------------------------------------------------------------------------- /experiments/eightmb-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/eightmb-template.json -------------------------------------------------------------------------------- /experiments/initiative-test/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/initiative-test/blueprint.json -------------------------------------------------------------------------------- /experiments/initiative-test/initiative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/initiative-test/initiative.json -------------------------------------------------------------------------------- /experiments/packaging-user-study/christian-agenda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/packaging-user-study/christian-agenda.md -------------------------------------------------------------------------------- /experiments/packaging-user-study/deployment-cmdlets/cli/mg-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/packaging-user-study/deployment-cmdlets/cli/mg-cli.sh -------------------------------------------------------------------------------- /experiments/packaging-user-study/deployment-cmdlets/cli/rg-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/packaging-user-study/deployment-cmdlets/cli/rg-cli.sh -------------------------------------------------------------------------------- /experiments/packaging-user-study/deployment-cmdlets/cli/sub-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/packaging-user-study/deployment-cmdlets/cli/sub-cli.sh -------------------------------------------------------------------------------- /experiments/packaging-user-study/deployment-cmdlets/ps/mg-ps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/packaging-user-study/deployment-cmdlets/ps/mg-ps.ps1 -------------------------------------------------------------------------------- /experiments/packaging-user-study/deployment-cmdlets/ps/rg-ps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/packaging-user-study/deployment-cmdlets/ps/rg-ps.ps1 -------------------------------------------------------------------------------- /experiments/packaging-user-study/deployment-cmdlets/ps/sub-ps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/packaging-user-study/deployment-cmdlets/ps/sub-ps.ps1 -------------------------------------------------------------------------------- /experiments/packaging-user-study/templatePackage-relative/artifacts/storageAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/packaging-user-study/templatePackage-relative/artifacts/storageAccount.json -------------------------------------------------------------------------------- /experiments/packaging-user-study/templatePackage-relative/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/packaging-user-study/templatePackage-relative/mainTemplate.json -------------------------------------------------------------------------------- /experiments/packaging-user-study/templatePackage/artifacts/storageAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/packaging-user-study/templatePackage/artifacts/storageAccount.json -------------------------------------------------------------------------------- /experiments/packaging-user-study/templatePackage/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/packaging-user-study/templatePackage/mainTemplate.json -------------------------------------------------------------------------------- /experiments/pass-artifacts/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/pass-artifacts/blueprint.json -------------------------------------------------------------------------------- /experiments/pass-artifacts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/pass-artifacts/main.js -------------------------------------------------------------------------------- /experiments/pass-artifacts/storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/pass-artifacts/storage.json -------------------------------------------------------------------------------- /experiments/pass-artifacts/vm-using-storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/pass-artifacts/vm-using-storage.json -------------------------------------------------------------------------------- /experiments/passing-artifact-values.json/app-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/passing-artifact-values.json/app-service.json -------------------------------------------------------------------------------- /experiments/passing-artifact-values.json/vnet-artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/passing-artifact-values.json/vnet-artifact.json -------------------------------------------------------------------------------- /experiments/secureString-in-bp/assign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/secureString-in-bp/assign.json -------------------------------------------------------------------------------- /experiments/templates-slash-service-topology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/templates-slash-service-topology.json -------------------------------------------------------------------------------- /experiments/using-functions/blueprint.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiments/using-functions/rg-template.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiments/using-functions/sub-template.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiments/vnet-peering/artifacts/peer-new-vnet-to-hub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/vnet-peering/artifacts/peer-new-vnet-to-hub.json -------------------------------------------------------------------------------- /experiments/vnet-peering/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/experiments/vnet-peering/blueprint.json -------------------------------------------------------------------------------- /misc/clean-subscription.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/misc/clean-subscription.ps1 -------------------------------------------------------------------------------- /policies/delete-all-policies.ps1: -------------------------------------------------------------------------------- 1 | Get-Help Get-AzPolicyAssignment -Examples -------------------------------------------------------------------------------- /policies/dine-bp-assign-testing/dine-bp-assign.policydefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/policies/dine-bp-assign-testing/dine-bp-assign.policydefinition -------------------------------------------------------------------------------- /policies/dine-bp-assign-testing/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/policies/dine-bp-assign-testing/params.json -------------------------------------------------------------------------------- /policies/test-ps-workflow/params.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /policies/test-ps-workflow/test-ps-workflow.policydefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/policies/test-ps-workflow/test-ps-workflow.policydefinition.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajf214/personal-arm-templates/HEAD/readme.md --------------------------------------------------------------------------------