├── .dockerignore ├── .github └── workflows │ ├── README.md │ └── dockerimage.yml ├── .gitignore ├── .travis.yml ├── Agent └── Linux │ ├── build.sh │ ├── readme.md │ ├── ubuntu-1804.json │ └── vsts-agent-create.sh ├── Config ├── masterOrchestration.ps1 ├── toolkit.config.json └── toolkit.subscription.json ├── Design ├── trackACRConsumption.md └── vmARMTemplateConsiderations.md ├── Docs ├── Release │ ├── 2019-09.md │ └── 2020-04.md ├── design-principles.md ├── github_actions.md ├── masterOrchestration │ ├── folder_replication.md │ ├── input_File.md │ ├── masterOrchestration_script.md │ ├── readme.md │ └── tearDownEnvironment.md └── quickstart.md ├── Environments ├── AKS │ ├── Archetype │ │ ├── definition.json │ │ ├── orchestration.json │ │ ├── parameters.json │ │ └── pipeline.yml │ └── LandingZone │ │ ├── definition.json │ │ ├── orchestration.json │ │ ├── parameters.json │ │ └── pipeline.yml ├── ASE-SQLDB │ ├── Archetype │ │ ├── definition.json │ │ ├── orchestration.json │ │ ├── parameters.json │ │ └── pipeline.yml │ └── LandingZone │ │ ├── NetworkParameters │ │ ├── networkSecurityGroups.json │ │ ├── routeTables.json │ │ └── virtualNetwork.json │ │ ├── definition.json │ │ ├── orchestration.json │ │ ├── parameters.json │ │ └── pipeline.yml ├── MS-VDI │ ├── definition.json │ ├── orchestration.json │ ├── parameters.json │ ├── pipeline.yml │ └── readme.md ├── NTier-IaaS │ ├── Archetype │ │ ├── definition.json │ │ ├── orchestration.json │ │ ├── parameters.json │ │ └── pipeline.yml │ └── LandingZone │ │ ├── NetworkParameters │ │ ├── applicationSecurityGroups.json │ │ ├── networkSecurityGroups.json │ │ ├── routeTables.json │ │ └── virtualNetwork.json │ │ ├── definition.json │ │ ├── orchestration.json │ │ ├── parameters.json │ │ └── pipeline.yml ├── OnPremises │ ├── definition.json │ ├── orchestration.json │ ├── parameters.json │ └── pipeline.yml ├── SharedServices-SPOKE │ ├── definition.json │ ├── orchestration.json │ ├── parameters.json │ ├── pipeline.yml │ └── readme.md ├── SharedServices │ ├── definition.json │ ├── orchestration.json │ ├── parameters.json │ ├── pipeline.yml │ └── readme.md ├── SharedServices_OnpremisesExtension │ ├── definition.json │ ├── orchestration.json │ ├── parameters.json │ └── pipeline.yml ├── Windows-VD │ ├── definition.json │ ├── orchestration.json │ ├── parameters.json │ ├── pipeline.yml │ └── readme.md ├── _Common │ ├── artifactsStorageAccount.json │ ├── organizationName.txt │ └── subscriptions.json └── readme.md ├── Exclude.vrksystem ├── InstallDependencies.ps1 ├── LICENSE ├── LabVM ├── InstallLabVM.ps1 ├── README.md └── azure-deploy.json ├── Modules ├── APIManagement │ ├── Pipeline │ │ └── api.management.azuredevops.ci.yaml │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── output.tests.ps1 │ │ └── test.parameters.json │ ├── deploy.json │ └── readme.md ├── ActiveDirectory │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── ActiveDirectoryDomainServices │ ├── Policy │ │ └── policy.deploy.json │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── AnalysisServices │ ├── Pipeline │ │ └── analysis.services.azuredevops.ci.yaml │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── output.tests.ps1 │ │ └── test.parameters.json │ ├── deploy.json │ └── readme.md ├── AppServiceEnvironments │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── AppServicePlan │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── AppServiceWebApp │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── ApplicationGateway │ ├── Pipeline │ │ └── azuredevops.ci.yaml │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── README.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── 01-all.json │ │ ├── 02-minimum.json │ │ ├── 03-internalvm.json │ │ ├── 04-publicwebapp.json │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ └── deploy.json ├── ApplicationInsights │ ├── Pipeline │ │ └── application.insights.azuredevops.ci.yaml │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── application.insights.continuous.export.ps1 │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── output.tests.ps1 │ │ └── test.parameters.json │ ├── deploy.json │ └── readme.md ├── ApplicationSecurityGroups │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── AutomationAccounts │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── AzureBastion │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── register.provider.feature.ps1 │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── no.location.parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── AzureDatabricks │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ └── git_placeholder.md │ ├── _README.md │ ├── azure.databricks.deploy.json │ └── azure.databricks.parameters.json ├── AzureFirewall │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── azure.firewall.addrulecollection.ps1 │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── output.test.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── AzureKubernetesServices │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ ├── kubernetes.aks.deploy.json │ │ └── kubernetes.aks.parameters.json │ ├── RBAC │ │ ├── kubernetes.aks.deploy.json │ │ └── kubernetes.aks.parameters.json │ ├── Scripts │ │ ├── create-and-upload-ca-cert.sh │ │ ├── create-and-upload-helm-and-tiller-certs.sh │ │ ├── create-cluster-rbac-role-bindings.sh │ │ ├── create-sign-w-x509-and-upload-cert.sh │ │ ├── create-tiller-enabled-namespace.sh │ │ ├── install-kubectl.sh │ │ ├── install-secured-tiller-instance.sh │ │ └── view-all-cluster-role.yaml │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── _README.md │ └── deploy.json ├── AzureSecurityCenter │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ └── parameters.json │ ├── deploy.json │ └── readme.md ├── CognitiveServices │ ├── Pipeline │ │ └── cognitive.services.azuredevops.ci.yaml │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── output.tests.ps1 │ │ └── test.parameters.json │ ├── deploy.json │ └── readme.md ├── ContainerRegistries │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── _README.md │ └── deploy.json ├── CosmosDB │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ ├── cosmosdb.firewall.ps1 │ │ ├── cosmosdb.log.analytics.register.ps1 │ │ └── cosmosdb.provision.ruleset.collection.ps1 │ ├── Tests │ │ └── git_placeholder.md │ ├── _README.md │ ├── cosmosdb.deploy.json │ └── cosmosdb.parameters.json ├── DNS │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── create.azure.dns.zone.ps1 │ ├── Test │ │ └── git_placeholder.md │ └── _README.md ├── DataFactories │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ └── git_placeholder.md │ ├── _README.md │ ├── data.factories.deploy.json │ └── data.factories.parameters.json ├── EventGrid │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ └── git_placeholder.md │ ├── _README.md │ ├── event.grid.deploy.json │ └── event.grid.parameters.json ├── EventHub │ ├── Pipeline │ │ └── event.hub.azuredevops.ci.yaml │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── output.tests.ps1 │ │ ├── parameters.json │ │ └── test.parameters.json │ ├── deploy.json │ └── readme.md ├── FunctionApps │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ └── git_placeholder.md │ ├── _README.md │ ├── function.apps.deploy.json │ └── function.apps.parameters.json ├── InternetInformationServices │ ├── Pipeline │ │ └── key.vault.azuredevops.ci.yaml │ ├── Policy │ │ └── key.vault.arm.policies.json │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ ├── create.keys.ps1 │ │ ├── key.vault.backup.ps1 │ │ ├── key.vault.log.analytics.register.ps1 │ │ ├── key.vault.restore.ps1 │ │ └── key.vault.secrect.rules.ps1 │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── output.test.ps1 │ │ ├── policy.tests.ps1 │ │ ├── rbac.tests.ps1 │ │ ├── virtual.machine.parameters.json │ │ └── virtual.machine.scale.set.parameters.json │ ├── deploy.json │ └── readme.md ├── KeyVault │ ├── Pipeline │ │ └── key.vault.azuredevops.ci.yaml │ ├── Policy │ │ └── key.vault.arm.policies.json │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ ├── create.keys.ps1 │ │ ├── key.vault.backup.ps1 │ │ ├── key.vault.log.analytics.register.ps1 │ │ ├── key.vault.restore.ps1 │ │ └── key.vault.secrect.rules.ps1 │ ├── Tests │ │ ├── enable.service.endpoint.parameters.json │ │ ├── module.tests.ps1 │ │ ├── output.test.ps1 │ │ ├── policy.tests.ps1 │ │ ├── rbac.tests.ps1 │ │ └── without.service.endpoint.parameters.json │ ├── deploy.json │ └── readme.md ├── KustoCluster │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── KustoDatabase │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── LoadBalancers │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ └── deploy.json ├── LogAnalytics │ ├── Pipeline │ │ └── log.analytics.azuredevops.ci.yaml │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── output.test.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── LogicApps │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ └── git_placeholder.md │ ├── _README.md │ ├── logic.apps.deploy.json │ └── logic.apps.parameters.json ├── MachineLearning │ ├── Pipeline │ │ └── machine.learning.azuredevops.ci.yaml │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── output.tests.ps1 │ │ └── test.parameters.json │ ├── deploy.json │ └── readme.md ├── MachineLearningServices │ ├── Pipeline │ │ └── machine.learning.azuredevops.ci.yaml │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── output.tests.ps1 │ │ └── test.parameters.json │ ├── deploy.json │ └── readme.md ├── MySQL │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ └── git_placeholder.md │ ├── _README.md │ ├── mysql.deploy.json │ └── mysql.parameters.json ├── NISTControls │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ └── module.tests.ps1 │ ├── deploy.json │ └── parameters.json ├── NetworkSecurityGroups │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── enable.flow.logs.ps1 │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── NotificationHub │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ └── git_placeholder.md │ ├── _README.md │ ├── notification.hub.deploy.json │ └── notification.hub.parameters.json ├── ProximityPlacementGroups │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ └── deploy.json ├── RecoveryServicesVaults │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ └── git_placeholder.md │ ├── _README.md │ ├── recovery.services.vaults.deploy.json │ └── recovery.services.vaults.parameters.json ├── RedisCache │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ └── git_placeholder.md │ ├── _README.md │ ├── redis.cache.deploy.json │ └── redis.cache.parameters.json ├── RouteTables │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── SQLDBServer │ ├── Pipeline │ │ └── sql.dbserver.azuredevops.ci.yaml │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── SQLDatabase │ ├── Pipeline │ │ └── sql.database.azuredevops.ci.yaml │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── SQLManagedInstances │ ├── Pipeline │ │ └── sql.managed.instances.azuredevops.ci.yaml │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── SQLServerAlwaysOn │ ├── Pipeline │ │ └── sql.server.azuredevops.ci.yaml │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── SearchServices │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── search.services.search.index.profile.ps1 │ ├── Tests │ │ └── git_placeholder.md │ ├── _README.md │ ├── search.services.deploy.json │ └── search.services.parameters.json ├── ServiceBus │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ └── git_placeholder.md │ ├── _README.md │ ├── deploy.json │ └── parameters.json ├── StorageAccounts │ ├── Pipeline │ │ └── storage.account.azuredevops.ci.yaml │ ├── Policy │ │ ├── deploy.json │ │ └── parameters.json │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── no.service.endpoint.parameters.json │ │ ├── output.tests.ps1 │ │ ├── policy.tests.ps1 │ │ ├── rbac.tests.ps1 │ │ └── with.service.endpoint.parameters.json │ ├── deploy.json │ └── readme.md ├── StreamAnalytics │ ├── Pipeline │ │ └── stream.analytics.azuredevops.ci.yaml │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── output.tests.ps1 │ │ └── test.parameters.json │ ├── deploy.json │ └── readme.md ├── UpdateAzureFirewall │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── output.test.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── VirtualMachineKeyEncryptionKey │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── linux.parameters.json │ │ ├── module.tests.ps1 │ │ ├── policy.tests.ps1 │ │ ├── rbac.tests.ps1 │ │ └── windows.parameters.json │ └── deploy.json ├── VirtualMachineScaleSets │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── linux.parameters.json │ │ ├── module.tests.ps1 │ │ ├── policy.tests.ps1 │ │ ├── rbac.tests.ps1 │ │ └── windows.parameters.json │ ├── deploy.json │ └── readme.md ├── VirtualMachines │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── linux.enable.pip.parameters.json │ │ ├── linux.parameters.json │ │ ├── module.tests.ps1 │ │ ├── policy.tests.ps1 │ │ ├── rbac.tests.ps1 │ │ ├── windows.enable.pip.parameters.json │ │ ├── windows.join.domain.parameters.json │ │ └── windows.parameters.json │ ├── deploy.json │ └── readme.md ├── VirtualNetwork │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── output.test.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── VirtualNetworkGateway │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ ├── virtual.network.gateway.clientcert.ps1 │ │ ├── virtual.network.gateway.clientcert.sh │ │ ├── virtual.network.gateway.rootcert.ps1 │ │ └── virtual.network.gateway.rootcert.sh │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── VirtualNetworkGatewayConnection │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── VirtualNetworkPeering │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── VirtualNetworkPeeringCross │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── WVDApplicationGroup │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── WVDHostPool │ ├── Pipeline │ │ └── git_placeholder.md │ ├── Policy │ │ └── git_placeholder.md │ ├── RBAC │ │ └── git_placeholder.md │ ├── Scripts │ │ └── git_placeholder.md │ ├── Tests │ │ ├── module.tests.ps1 │ │ ├── parameters.json │ │ ├── policy.tests.ps1 │ │ └── rbac.tests.ps1 │ ├── deploy.json │ └── readme.md ├── deploying-modules.md ├── module-readme-template.md ├── readme.md └── testing-modules.md ├── Orchestration ├── Bootstrap │ └── Initialize.ps1 ├── Common │ ├── Helper.psd1 │ └── Helper.psm1 ├── DataService │ ├── Implementations │ │ ├── CacheDataService.ps1 │ │ ├── DeploymentAuditDataService.ps1 │ │ └── ModuleStateDataService.ps1 │ └── Interface │ │ ├── ICacheDataService.ps1 │ │ ├── IDeploymentAuditDataService.ps1 │ │ └── IModuleStateDataService.ps1 ├── Factory │ ├── Factory.psd1 │ ├── Factory.psm1 │ └── ImportModules.ps1 ├── IntegrationService │ ├── Implementations │ │ └── AzureResourceManagerDeploymentService.ps1 │ └── Interface │ │ └── IDeploymentService.ps1 ├── OrchestrationService │ ├── Cleanup_Script.ps1 │ ├── ConfigurationBuilder.ps1 │ ├── CustomScriptExecution.ps1 │ ├── ModuleConfigurationDeployment.ps1 │ ├── Pre_req_script.ps1 │ ├── TopologicalSort │ │ ├── DirectedGraph.cs │ │ ├── TopologicalSort.csproj │ │ └── Vertex.cs │ └── ValidationResourceGroupSetup.ps1 ├── RepositoryService │ ├── Implementations │ │ ├── AzureDevOpsCacheRepository.ps1 │ │ ├── BlobContainerAuditRepository.ps1 │ │ ├── BlobContainerStateRepository.ps1 │ │ ├── LocalCacheRepository.ps1 │ │ ├── LocalStorageAuditRepository.ps1 │ │ └── LocalStorageStateRepository.ps1 │ └── Interface │ │ ├── IAuditRepository.ps1 │ │ ├── ICacheRepository.ps1 │ │ └── IStateRepository.ps1 ├── Tests │ ├── Samples │ │ ├── environment-keys │ │ │ └── archetypeDefinition.json │ │ ├── nested-file-functions │ │ │ ├── comment1.json │ │ │ └── paas │ │ │ │ ├── archetype-definition-array-filefn.json │ │ │ │ ├── archetype-definition.json │ │ │ │ ├── arrays.json │ │ │ │ ├── comment2.json │ │ │ │ ├── comment3.json │ │ │ │ ├── comment4.json │ │ │ │ ├── common │ │ │ │ ├── comment3.json │ │ │ │ ├── subscriptions.json │ │ │ │ └── toolkit.json │ │ │ │ └── subscriptions │ │ │ │ ├── on-premises-subscription.json │ │ │ │ ├── shared-services-subscription.json │ │ │ │ └── toolkit-subscription.json │ │ ├── scripts │ │ │ ├── bash-script-order.sh │ │ │ ├── sample-script.ps1 │ │ │ └── sample-script.sh │ │ └── shared-services │ │ │ ├── archetype-definition-tests.json │ │ │ ├── archetype-definition.additional.props.json │ │ │ ├── archetype-definition.rel-path.json │ │ │ ├── orchestrations │ │ │ ├── archetype-orchestration-absPathFn.json │ │ │ ├── archetype-orchestration.json │ │ │ └── orchestration-custom-scripts.json │ │ │ ├── parameters │ │ │ └── archetype-parameters.json │ │ │ ├── subscriptions │ │ │ └── subscriptions.json │ │ │ └── toolkit-components │ │ │ └── toolkit-components.json │ └── UnitTests │ │ ├── AzureDevOpsCacheRepository.Tests.ps1 │ │ ├── AzureResourceManagerDeploymentService.Tests.ps1 │ │ ├── BlobContainerAuditRepository.Tests.ps1 │ │ ├── BlobContainerStateRepository.Tests.ps1 │ │ ├── CacheDataService.Tests.ps1 │ │ ├── ConfigurationBuilder.Tests.ps1 │ │ ├── CustomScriptExecution.Tests.ps1 │ │ ├── Deployment.feature │ │ ├── DeploymentAuditDataService.Tests.ps1 │ │ ├── LocalCacheRepository.Tests.ps1 │ │ ├── ModuleConfigurationDeployment.Tests.ps1 │ │ ├── RunAll.ps1 │ │ ├── TokenReplacementService.Tests.ps1 │ │ └── ValidationResourceGroupSetup.Tests.ps1 └── TokenReplacementService │ ├── Implementations │ └── TokenReplacementService.ps1 │ └── Interface │ └── ITokenReplacementService.ps1 ├── README.md ├── RunAllTestsPipeline.yml ├── Scripts ├── AKS │ ├── create-and-upload-ca-cert.sh │ ├── create-and-upload-helm-and-tiller-certs.sh │ ├── create-cluster-rbac-role-bindings.sh │ ├── create-sign-w-x509-and-upload-cert.sh │ ├── create-tiller-enabled-namespace.sh │ ├── install-kubectl.sh │ ├── install-secured-tiller-instance.sh │ └── view-all-cluster-role.yaml ├── Subscription │ └── NewSubscription.ps1 └── Windows │ ├── CreateHADB.ps1.zip │ ├── PrepareSQLServer.ps1.zip │ ├── PrepareSQLServer_Install_Modules.ps1 │ ├── add-Arecord-to-dns.ps1 │ ├── adds_wait_for_bitlocker.zip │ ├── adds_with_format.zip │ ├── adds_without_reboot.zip │ ├── create-new-cloud-ad-site.ps1 │ ├── enable-local-policy-settings.ps1 │ ├── formatDataDisks.zip │ ├── formatDisk.zip │ ├── getPublicIP.ps1 │ ├── group_policy_settings.ps1 │ ├── iisaspnet.zip │ ├── install_ADDS_No_Disk_Format.zip │ ├── joinComputerToDomain.zip │ ├── new-dns-zone.ps1 │ ├── newADDomain.zip │ ├── one-way-trust-dc.ps1 │ ├── reboot_vm_async.ps1 │ ├── sample-output.ps1 │ ├── sleep.ps1 │ └── xCustomBitlocker.zip ├── action.yml ├── dockerfile ├── entrypoint1.ps1 ├── images ├── inputFile_line_change.png ├── input_file_ex.png ├── input_file_ex2.png ├── input_file_ex3.png ├── master_script_ex.png ├── orchestration_enable.png ├── storage_account_ex1.png └── storage_account_ex2.png └── inputFile.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/dockerimage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/.github/workflows/dockerimage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/.travis.yml -------------------------------------------------------------------------------- /Agent/Linux/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Agent/Linux/build.sh -------------------------------------------------------------------------------- /Agent/Linux/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Agent/Linux/readme.md -------------------------------------------------------------------------------- /Agent/Linux/ubuntu-1804.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Agent/Linux/ubuntu-1804.json -------------------------------------------------------------------------------- /Agent/Linux/vsts-agent-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Agent/Linux/vsts-agent-create.sh -------------------------------------------------------------------------------- /Config/masterOrchestration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Config/masterOrchestration.ps1 -------------------------------------------------------------------------------- /Config/toolkit.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Config/toolkit.config.json -------------------------------------------------------------------------------- /Config/toolkit.subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Config/toolkit.subscription.json -------------------------------------------------------------------------------- /Design/trackACRConsumption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Design/trackACRConsumption.md -------------------------------------------------------------------------------- /Design/vmARMTemplateConsiderations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Design/vmARMTemplateConsiderations.md -------------------------------------------------------------------------------- /Docs/Release/2019-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Docs/Release/2019-09.md -------------------------------------------------------------------------------- /Docs/Release/2020-04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Docs/Release/2020-04.md -------------------------------------------------------------------------------- /Docs/design-principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Docs/design-principles.md -------------------------------------------------------------------------------- /Docs/github_actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Docs/github_actions.md -------------------------------------------------------------------------------- /Docs/masterOrchestration/folder_replication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Docs/masterOrchestration/folder_replication.md -------------------------------------------------------------------------------- /Docs/masterOrchestration/input_File.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Docs/masterOrchestration/input_File.md -------------------------------------------------------------------------------- /Docs/masterOrchestration/masterOrchestration_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Docs/masterOrchestration/masterOrchestration_script.md -------------------------------------------------------------------------------- /Docs/masterOrchestration/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Docs/masterOrchestration/readme.md -------------------------------------------------------------------------------- /Docs/masterOrchestration/tearDownEnvironment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Docs/masterOrchestration/tearDownEnvironment.md -------------------------------------------------------------------------------- /Docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Docs/quickstart.md -------------------------------------------------------------------------------- /Environments/AKS/Archetype/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/AKS/Archetype/definition.json -------------------------------------------------------------------------------- /Environments/AKS/Archetype/orchestration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/AKS/Archetype/orchestration.json -------------------------------------------------------------------------------- /Environments/AKS/Archetype/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/AKS/Archetype/parameters.json -------------------------------------------------------------------------------- /Environments/AKS/Archetype/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/AKS/Archetype/pipeline.yml -------------------------------------------------------------------------------- /Environments/AKS/LandingZone/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/AKS/LandingZone/definition.json -------------------------------------------------------------------------------- /Environments/AKS/LandingZone/orchestration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/AKS/LandingZone/orchestration.json -------------------------------------------------------------------------------- /Environments/AKS/LandingZone/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/AKS/LandingZone/parameters.json -------------------------------------------------------------------------------- /Environments/AKS/LandingZone/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/AKS/LandingZone/pipeline.yml -------------------------------------------------------------------------------- /Environments/ASE-SQLDB/Archetype/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/ASE-SQLDB/Archetype/definition.json -------------------------------------------------------------------------------- /Environments/ASE-SQLDB/Archetype/orchestration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/ASE-SQLDB/Archetype/orchestration.json -------------------------------------------------------------------------------- /Environments/ASE-SQLDB/Archetype/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/ASE-SQLDB/Archetype/parameters.json -------------------------------------------------------------------------------- /Environments/ASE-SQLDB/Archetype/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/ASE-SQLDB/Archetype/pipeline.yml -------------------------------------------------------------------------------- /Environments/ASE-SQLDB/LandingZone/NetworkParameters/networkSecurityGroups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/ASE-SQLDB/LandingZone/NetworkParameters/networkSecurityGroups.json -------------------------------------------------------------------------------- /Environments/ASE-SQLDB/LandingZone/NetworkParameters/routeTables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/ASE-SQLDB/LandingZone/NetworkParameters/routeTables.json -------------------------------------------------------------------------------- /Environments/ASE-SQLDB/LandingZone/NetworkParameters/virtualNetwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/ASE-SQLDB/LandingZone/NetworkParameters/virtualNetwork.json -------------------------------------------------------------------------------- /Environments/ASE-SQLDB/LandingZone/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/ASE-SQLDB/LandingZone/definition.json -------------------------------------------------------------------------------- /Environments/ASE-SQLDB/LandingZone/orchestration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/ASE-SQLDB/LandingZone/orchestration.json -------------------------------------------------------------------------------- /Environments/ASE-SQLDB/LandingZone/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/ASE-SQLDB/LandingZone/parameters.json -------------------------------------------------------------------------------- /Environments/ASE-SQLDB/LandingZone/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/ASE-SQLDB/LandingZone/pipeline.yml -------------------------------------------------------------------------------- /Environments/MS-VDI/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/MS-VDI/definition.json -------------------------------------------------------------------------------- /Environments/MS-VDI/orchestration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/MS-VDI/orchestration.json -------------------------------------------------------------------------------- /Environments/MS-VDI/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/MS-VDI/parameters.json -------------------------------------------------------------------------------- /Environments/MS-VDI/pipeline.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Environments/MS-VDI/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/MS-VDI/readme.md -------------------------------------------------------------------------------- /Environments/NTier-IaaS/Archetype/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/NTier-IaaS/Archetype/definition.json -------------------------------------------------------------------------------- /Environments/NTier-IaaS/Archetype/orchestration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/NTier-IaaS/Archetype/orchestration.json -------------------------------------------------------------------------------- /Environments/NTier-IaaS/Archetype/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/NTier-IaaS/Archetype/parameters.json -------------------------------------------------------------------------------- /Environments/NTier-IaaS/Archetype/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/NTier-IaaS/Archetype/pipeline.yml -------------------------------------------------------------------------------- /Environments/NTier-IaaS/LandingZone/NetworkParameters/applicationSecurityGroups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/NTier-IaaS/LandingZone/NetworkParameters/applicationSecurityGroups.json -------------------------------------------------------------------------------- /Environments/NTier-IaaS/LandingZone/NetworkParameters/networkSecurityGroups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/NTier-IaaS/LandingZone/NetworkParameters/networkSecurityGroups.json -------------------------------------------------------------------------------- /Environments/NTier-IaaS/LandingZone/NetworkParameters/routeTables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/NTier-IaaS/LandingZone/NetworkParameters/routeTables.json -------------------------------------------------------------------------------- /Environments/NTier-IaaS/LandingZone/NetworkParameters/virtualNetwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/NTier-IaaS/LandingZone/NetworkParameters/virtualNetwork.json -------------------------------------------------------------------------------- /Environments/NTier-IaaS/LandingZone/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/NTier-IaaS/LandingZone/definition.json -------------------------------------------------------------------------------- /Environments/NTier-IaaS/LandingZone/orchestration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/NTier-IaaS/LandingZone/orchestration.json -------------------------------------------------------------------------------- /Environments/NTier-IaaS/LandingZone/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/NTier-IaaS/LandingZone/parameters.json -------------------------------------------------------------------------------- /Environments/NTier-IaaS/LandingZone/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/NTier-IaaS/LandingZone/pipeline.yml -------------------------------------------------------------------------------- /Environments/OnPremises/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/OnPremises/definition.json -------------------------------------------------------------------------------- /Environments/OnPremises/orchestration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/OnPremises/orchestration.json -------------------------------------------------------------------------------- /Environments/OnPremises/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/OnPremises/parameters.json -------------------------------------------------------------------------------- /Environments/OnPremises/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/OnPremises/pipeline.yml -------------------------------------------------------------------------------- /Environments/SharedServices-SPOKE/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/SharedServices-SPOKE/definition.json -------------------------------------------------------------------------------- /Environments/SharedServices-SPOKE/orchestration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/SharedServices-SPOKE/orchestration.json -------------------------------------------------------------------------------- /Environments/SharedServices-SPOKE/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/SharedServices-SPOKE/parameters.json -------------------------------------------------------------------------------- /Environments/SharedServices-SPOKE/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/SharedServices-SPOKE/pipeline.yml -------------------------------------------------------------------------------- /Environments/SharedServices-SPOKE/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/SharedServices-SPOKE/readme.md -------------------------------------------------------------------------------- /Environments/SharedServices/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/SharedServices/definition.json -------------------------------------------------------------------------------- /Environments/SharedServices/orchestration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/SharedServices/orchestration.json -------------------------------------------------------------------------------- /Environments/SharedServices/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/SharedServices/parameters.json -------------------------------------------------------------------------------- /Environments/SharedServices/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/SharedServices/pipeline.yml -------------------------------------------------------------------------------- /Environments/SharedServices/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/SharedServices/readme.md -------------------------------------------------------------------------------- /Environments/SharedServices_OnpremisesExtension/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/SharedServices_OnpremisesExtension/definition.json -------------------------------------------------------------------------------- /Environments/SharedServices_OnpremisesExtension/orchestration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/SharedServices_OnpremisesExtension/orchestration.json -------------------------------------------------------------------------------- /Environments/SharedServices_OnpremisesExtension/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/SharedServices_OnpremisesExtension/parameters.json -------------------------------------------------------------------------------- /Environments/SharedServices_OnpremisesExtension/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/SharedServices_OnpremisesExtension/pipeline.yml -------------------------------------------------------------------------------- /Environments/Windows-VD/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/Windows-VD/definition.json -------------------------------------------------------------------------------- /Environments/Windows-VD/orchestration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/Windows-VD/orchestration.json -------------------------------------------------------------------------------- /Environments/Windows-VD/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/Windows-VD/parameters.json -------------------------------------------------------------------------------- /Environments/Windows-VD/pipeline.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Environments/Windows-VD/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/Windows-VD/readme.md -------------------------------------------------------------------------------- /Environments/_Common/artifactsStorageAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/_Common/artifactsStorageAccount.json -------------------------------------------------------------------------------- /Environments/_Common/organizationName.txt: -------------------------------------------------------------------------------- 1 | contoso -------------------------------------------------------------------------------- /Environments/_Common/subscriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/_Common/subscriptions.json -------------------------------------------------------------------------------- /Environments/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Environments/readme.md -------------------------------------------------------------------------------- /Exclude.vrksystem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstallDependencies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/InstallDependencies.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/LICENSE -------------------------------------------------------------------------------- /LabVM/InstallLabVM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/LabVM/InstallLabVM.ps1 -------------------------------------------------------------------------------- /LabVM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/LabVM/README.md -------------------------------------------------------------------------------- /LabVM/azure-deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/LabVM/azure-deploy.json -------------------------------------------------------------------------------- /Modules/APIManagement/Pipeline/api.management.azuredevops.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/APIManagement/Pipeline/api.management.azuredevops.ci.yaml -------------------------------------------------------------------------------- /Modules/APIManagement/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/APIManagement/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/APIManagement/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/APIManagement/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/APIManagement/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/APIManagement/Tests/output.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/APIManagement/Tests/output.tests.ps1 -------------------------------------------------------------------------------- /Modules/APIManagement/Tests/test.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/APIManagement/Tests/test.parameters.json -------------------------------------------------------------------------------- /Modules/APIManagement/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/APIManagement/deploy.json -------------------------------------------------------------------------------- /Modules/APIManagement/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/APIManagement/readme.md -------------------------------------------------------------------------------- /Modules/ActiveDirectory/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ActiveDirectory/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ActiveDirectory/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ActiveDirectory/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ActiveDirectory/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/ActiveDirectory/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ActiveDirectory/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/ActiveDirectory/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ActiveDirectory/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/ActiveDirectory/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ActiveDirectory/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/ActiveDirectory/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ActiveDirectory/deploy.json -------------------------------------------------------------------------------- /Modules/ActiveDirectory/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ActiveDirectory/readme.md -------------------------------------------------------------------------------- /Modules/ActiveDirectoryDomainServices/Policy/policy.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ActiveDirectoryDomainServices/Policy/policy.deploy.json -------------------------------------------------------------------------------- /Modules/ActiveDirectoryDomainServices/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ActiveDirectoryDomainServices/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ActiveDirectoryDomainServices/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ActiveDirectoryDomainServices/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/ActiveDirectoryDomainServices/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ActiveDirectoryDomainServices/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/ActiveDirectoryDomainServices/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ActiveDirectoryDomainServices/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/ActiveDirectoryDomainServices/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ActiveDirectoryDomainServices/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/ActiveDirectoryDomainServices/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ActiveDirectoryDomainServices/deploy.json -------------------------------------------------------------------------------- /Modules/ActiveDirectoryDomainServices/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ActiveDirectoryDomainServices/readme.md -------------------------------------------------------------------------------- /Modules/AnalysisServices/Pipeline/analysis.services.azuredevops.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AnalysisServices/Pipeline/analysis.services.azuredevops.ci.yaml -------------------------------------------------------------------------------- /Modules/AnalysisServices/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AnalysisServices/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AnalysisServices/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AnalysisServices/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AnalysisServices/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/AnalysisServices/Tests/output.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AnalysisServices/Tests/output.tests.ps1 -------------------------------------------------------------------------------- /Modules/AnalysisServices/Tests/test.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AnalysisServices/Tests/test.parameters.json -------------------------------------------------------------------------------- /Modules/AnalysisServices/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AnalysisServices/deploy.json -------------------------------------------------------------------------------- /Modules/AnalysisServices/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AnalysisServices/readme.md -------------------------------------------------------------------------------- /Modules/AppServiceEnvironments/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AppServiceEnvironments/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AppServiceEnvironments/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AppServiceEnvironments/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AppServiceEnvironments/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AppServiceEnvironments/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/AppServiceEnvironments/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AppServiceEnvironments/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/AppServiceEnvironments/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AppServiceEnvironments/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/AppServiceEnvironments/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AppServiceEnvironments/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/AppServiceEnvironments/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AppServiceEnvironments/deploy.json -------------------------------------------------------------------------------- /Modules/AppServiceEnvironments/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AppServiceEnvironments/readme.md -------------------------------------------------------------------------------- /Modules/AppServicePlan/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AppServicePlan/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AppServicePlan/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AppServicePlan/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AppServicePlan/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AppServicePlan/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/AppServicePlan/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AppServicePlan/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/AppServicePlan/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AppServicePlan/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/AppServicePlan/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AppServicePlan/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/AppServicePlan/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AppServicePlan/deploy.json -------------------------------------------------------------------------------- /Modules/AppServicePlan/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AppServicePlan/readme.md -------------------------------------------------------------------------------- /Modules/AppServiceWebApp/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AppServiceWebApp/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AppServiceWebApp/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AppServiceWebApp/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AppServiceWebApp/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AppServiceWebApp/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/AppServiceWebApp/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AppServiceWebApp/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/AppServiceWebApp/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AppServiceWebApp/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/AppServiceWebApp/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AppServiceWebApp/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/AppServiceWebApp/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AppServiceWebApp/deploy.json -------------------------------------------------------------------------------- /Modules/AppServiceWebApp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AppServiceWebApp/readme.md -------------------------------------------------------------------------------- /Modules/ApplicationGateway/Pipeline/azuredevops.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationGateway/Pipeline/azuredevops.ci.yaml -------------------------------------------------------------------------------- /Modules/ApplicationGateway/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ApplicationGateway/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ApplicationGateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationGateway/README.md -------------------------------------------------------------------------------- /Modules/ApplicationGateway/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ApplicationGateway/Tests/01-all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationGateway/Tests/01-all.json -------------------------------------------------------------------------------- /Modules/ApplicationGateway/Tests/02-minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationGateway/Tests/02-minimum.json -------------------------------------------------------------------------------- /Modules/ApplicationGateway/Tests/03-internalvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationGateway/Tests/03-internalvm.json -------------------------------------------------------------------------------- /Modules/ApplicationGateway/Tests/04-publicwebapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationGateway/Tests/04-publicwebapp.json -------------------------------------------------------------------------------- /Modules/ApplicationGateway/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationGateway/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/ApplicationGateway/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationGateway/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/ApplicationGateway/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationGateway/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/ApplicationGateway/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationGateway/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/ApplicationGateway/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationGateway/deploy.json -------------------------------------------------------------------------------- /Modules/ApplicationInsights/Pipeline/application.insights.azuredevops.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationInsights/Pipeline/application.insights.azuredevops.ci.yaml -------------------------------------------------------------------------------- /Modules/ApplicationInsights/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ApplicationInsights/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ApplicationInsights/Scripts/application.insights.continuous.export.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationInsights/Scripts/application.insights.continuous.export.ps1 -------------------------------------------------------------------------------- /Modules/ApplicationInsights/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationInsights/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/ApplicationInsights/Tests/output.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationInsights/Tests/output.tests.ps1 -------------------------------------------------------------------------------- /Modules/ApplicationInsights/Tests/test.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationInsights/Tests/test.parameters.json -------------------------------------------------------------------------------- /Modules/ApplicationInsights/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationInsights/deploy.json -------------------------------------------------------------------------------- /Modules/ApplicationInsights/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationInsights/readme.md -------------------------------------------------------------------------------- /Modules/ApplicationSecurityGroups/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ApplicationSecurityGroups/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ApplicationSecurityGroups/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ApplicationSecurityGroups/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationSecurityGroups/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/ApplicationSecurityGroups/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationSecurityGroups/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/ApplicationSecurityGroups/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationSecurityGroups/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/ApplicationSecurityGroups/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationSecurityGroups/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/ApplicationSecurityGroups/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationSecurityGroups/deploy.json -------------------------------------------------------------------------------- /Modules/ApplicationSecurityGroups/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ApplicationSecurityGroups/readme.md -------------------------------------------------------------------------------- /Modules/AutomationAccounts/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AutomationAccounts/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AutomationAccounts/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AutomationAccounts/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AutomationAccounts/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/AutomationAccounts/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AutomationAccounts/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/AutomationAccounts/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AutomationAccounts/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/AutomationAccounts/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AutomationAccounts/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/AutomationAccounts/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AutomationAccounts/deploy.json -------------------------------------------------------------------------------- /Modules/AutomationAccounts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AutomationAccounts/readme.md -------------------------------------------------------------------------------- /Modules/AzureBastion/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AzureBastion/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AzureBastion/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AzureBastion/Scripts/register.provider.feature.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureBastion/Scripts/register.provider.feature.ps1 -------------------------------------------------------------------------------- /Modules/AzureBastion/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureBastion/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/AzureBastion/Tests/no.location.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureBastion/Tests/no.location.parameters.json -------------------------------------------------------------------------------- /Modules/AzureBastion/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureBastion/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/AzureBastion/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureBastion/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/AzureBastion/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureBastion/deploy.json -------------------------------------------------------------------------------- /Modules/AzureBastion/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureBastion/readme.md -------------------------------------------------------------------------------- /Modules/AzureDatabricks/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AzureDatabricks/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AzureDatabricks/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AzureDatabricks/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AzureDatabricks/Tests/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AzureDatabricks/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureDatabricks/_README.md -------------------------------------------------------------------------------- /Modules/AzureDatabricks/azure.databricks.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureDatabricks/azure.databricks.deploy.json -------------------------------------------------------------------------------- /Modules/AzureDatabricks/azure.databricks.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureDatabricks/azure.databricks.parameters.json -------------------------------------------------------------------------------- /Modules/AzureFirewall/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AzureFirewall/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AzureFirewall/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AzureFirewall/Scripts/azure.firewall.addrulecollection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureFirewall/Scripts/azure.firewall.addrulecollection.ps1 -------------------------------------------------------------------------------- /Modules/AzureFirewall/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureFirewall/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/AzureFirewall/Tests/output.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureFirewall/Tests/output.test.ps1 -------------------------------------------------------------------------------- /Modules/AzureFirewall/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureFirewall/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/AzureFirewall/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureFirewall/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/AzureFirewall/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureFirewall/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/AzureFirewall/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureFirewall/deploy.json -------------------------------------------------------------------------------- /Modules/AzureFirewall/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureFirewall/readme.md -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/Policy/kubernetes.aks.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureKubernetesServices/Policy/kubernetes.aks.deploy.json -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/Policy/kubernetes.aks.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureKubernetesServices/Policy/kubernetes.aks.parameters.json -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/RBAC/kubernetes.aks.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureKubernetesServices/RBAC/kubernetes.aks.deploy.json -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/RBAC/kubernetes.aks.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureKubernetesServices/RBAC/kubernetes.aks.parameters.json -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/Scripts/create-and-upload-ca-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureKubernetesServices/Scripts/create-and-upload-ca-cert.sh -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/Scripts/create-and-upload-helm-and-tiller-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureKubernetesServices/Scripts/create-and-upload-helm-and-tiller-certs.sh -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/Scripts/create-cluster-rbac-role-bindings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureKubernetesServices/Scripts/create-cluster-rbac-role-bindings.sh -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/Scripts/create-sign-w-x509-and-upload-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureKubernetesServices/Scripts/create-sign-w-x509-and-upload-cert.sh -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/Scripts/create-tiller-enabled-namespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureKubernetesServices/Scripts/create-tiller-enabled-namespace.sh -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/Scripts/install-kubectl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureKubernetesServices/Scripts/install-kubectl.sh -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/Scripts/install-secured-tiller-instance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureKubernetesServices/Scripts/install-secured-tiller-instance.sh -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/Scripts/view-all-cluster-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureKubernetesServices/Scripts/view-all-cluster-role.yaml -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureKubernetesServices/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureKubernetesServices/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureKubernetesServices/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureKubernetesServices/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureKubernetesServices/_README.md -------------------------------------------------------------------------------- /Modules/AzureKubernetesServices/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureKubernetesServices/deploy.json -------------------------------------------------------------------------------- /Modules/AzureSecurityCenter/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AzureSecurityCenter/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AzureSecurityCenter/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AzureSecurityCenter/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AzureSecurityCenter/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureSecurityCenter/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/AzureSecurityCenter/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureSecurityCenter/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/AzureSecurityCenter/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureSecurityCenter/deploy.json -------------------------------------------------------------------------------- /Modules/AzureSecurityCenter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/AzureSecurityCenter/readme.md -------------------------------------------------------------------------------- /Modules/CognitiveServices/Pipeline/cognitive.services.azuredevops.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/CognitiveServices/Pipeline/cognitive.services.azuredevops.ci.yaml -------------------------------------------------------------------------------- /Modules/CognitiveServices/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/CognitiveServices/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/CognitiveServices/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/CognitiveServices/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/CognitiveServices/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/CognitiveServices/Tests/output.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/CognitiveServices/Tests/output.tests.ps1 -------------------------------------------------------------------------------- /Modules/CognitiveServices/Tests/test.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/CognitiveServices/Tests/test.parameters.json -------------------------------------------------------------------------------- /Modules/CognitiveServices/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/CognitiveServices/deploy.json -------------------------------------------------------------------------------- /Modules/CognitiveServices/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/CognitiveServices/readme.md -------------------------------------------------------------------------------- /Modules/ContainerRegistries/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ContainerRegistries/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ContainerRegistries/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ContainerRegistries/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ContainerRegistries/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ContainerRegistries/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/ContainerRegistries/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ContainerRegistries/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/ContainerRegistries/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ContainerRegistries/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/ContainerRegistries/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ContainerRegistries/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/ContainerRegistries/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ContainerRegistries/_README.md -------------------------------------------------------------------------------- /Modules/ContainerRegistries/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ContainerRegistries/deploy.json -------------------------------------------------------------------------------- /Modules/CosmosDB/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/CosmosDB/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/CosmosDB/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/CosmosDB/Scripts/cosmosdb.firewall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/CosmosDB/Scripts/cosmosdb.firewall.ps1 -------------------------------------------------------------------------------- /Modules/CosmosDB/Scripts/cosmosdb.log.analytics.register.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/CosmosDB/Scripts/cosmosdb.log.analytics.register.ps1 -------------------------------------------------------------------------------- /Modules/CosmosDB/Scripts/cosmosdb.provision.ruleset.collection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/CosmosDB/Scripts/cosmosdb.provision.ruleset.collection.ps1 -------------------------------------------------------------------------------- /Modules/CosmosDB/Tests/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/CosmosDB/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/CosmosDB/_README.md -------------------------------------------------------------------------------- /Modules/CosmosDB/cosmosdb.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/CosmosDB/cosmosdb.deploy.json -------------------------------------------------------------------------------- /Modules/CosmosDB/cosmosdb.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/CosmosDB/cosmosdb.parameters.json -------------------------------------------------------------------------------- /Modules/DNS/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/DNS/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/DNS/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/DNS/Scripts/create.azure.dns.zone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/DNS/Scripts/create.azure.dns.zone.ps1 -------------------------------------------------------------------------------- /Modules/DNS/Test/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/DNS/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/DNS/_README.md -------------------------------------------------------------------------------- /Modules/DataFactories/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/DataFactories/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/DataFactories/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/DataFactories/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/DataFactories/Tests/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/DataFactories/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/DataFactories/_README.md -------------------------------------------------------------------------------- /Modules/DataFactories/data.factories.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/DataFactories/data.factories.deploy.json -------------------------------------------------------------------------------- /Modules/DataFactories/data.factories.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/DataFactories/data.factories.parameters.json -------------------------------------------------------------------------------- /Modules/EventGrid/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/EventGrid/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/EventGrid/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/EventGrid/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/EventGrid/Tests/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/EventGrid/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/EventGrid/_README.md -------------------------------------------------------------------------------- /Modules/EventGrid/event.grid.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/EventGrid/event.grid.deploy.json -------------------------------------------------------------------------------- /Modules/EventGrid/event.grid.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/EventGrid/event.grid.parameters.json -------------------------------------------------------------------------------- /Modules/EventHub/Pipeline/event.hub.azuredevops.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/EventHub/Pipeline/event.hub.azuredevops.ci.yaml -------------------------------------------------------------------------------- /Modules/EventHub/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/EventHub/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/EventHub/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/EventHub/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/EventHub/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/EventHub/Tests/output.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/EventHub/Tests/output.tests.ps1 -------------------------------------------------------------------------------- /Modules/EventHub/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/EventHub/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/EventHub/Tests/test.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/EventHub/Tests/test.parameters.json -------------------------------------------------------------------------------- /Modules/EventHub/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/EventHub/deploy.json -------------------------------------------------------------------------------- /Modules/EventHub/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/EventHub/readme.md -------------------------------------------------------------------------------- /Modules/FunctionApps/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FunctionApps/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FunctionApps/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FunctionApps/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FunctionApps/Tests/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FunctionApps/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/FunctionApps/_README.md -------------------------------------------------------------------------------- /Modules/FunctionApps/function.apps.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/FunctionApps/function.apps.deploy.json -------------------------------------------------------------------------------- /Modules/FunctionApps/function.apps.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/FunctionApps/function.apps.parameters.json -------------------------------------------------------------------------------- /Modules/InternetInformationServices/Pipeline/key.vault.azuredevops.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/InternetInformationServices/Pipeline/key.vault.azuredevops.ci.yaml -------------------------------------------------------------------------------- /Modules/InternetInformationServices/Policy/key.vault.arm.policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/InternetInformationServices/Policy/key.vault.arm.policies.json -------------------------------------------------------------------------------- /Modules/InternetInformationServices/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/InternetInformationServices/Scripts/create.keys.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/InternetInformationServices/Scripts/create.keys.ps1 -------------------------------------------------------------------------------- /Modules/InternetInformationServices/Scripts/key.vault.backup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/InternetInformationServices/Scripts/key.vault.backup.ps1 -------------------------------------------------------------------------------- /Modules/InternetInformationServices/Scripts/key.vault.log.analytics.register.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/InternetInformationServices/Scripts/key.vault.log.analytics.register.ps1 -------------------------------------------------------------------------------- /Modules/InternetInformationServices/Scripts/key.vault.restore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/InternetInformationServices/Scripts/key.vault.restore.ps1 -------------------------------------------------------------------------------- /Modules/InternetInformationServices/Scripts/key.vault.secrect.rules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/InternetInformationServices/Scripts/key.vault.secrect.rules.ps1 -------------------------------------------------------------------------------- /Modules/InternetInformationServices/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/InternetInformationServices/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/InternetInformationServices/Tests/output.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/InternetInformationServices/Tests/output.test.ps1 -------------------------------------------------------------------------------- /Modules/InternetInformationServices/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/InternetInformationServices/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/InternetInformationServices/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/InternetInformationServices/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/InternetInformationServices/Tests/virtual.machine.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/InternetInformationServices/Tests/virtual.machine.parameters.json -------------------------------------------------------------------------------- /Modules/InternetInformationServices/Tests/virtual.machine.scale.set.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/InternetInformationServices/Tests/virtual.machine.scale.set.parameters.json -------------------------------------------------------------------------------- /Modules/InternetInformationServices/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/InternetInformationServices/deploy.json -------------------------------------------------------------------------------- /Modules/InternetInformationServices/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/InternetInformationServices/readme.md -------------------------------------------------------------------------------- /Modules/KeyVault/Pipeline/key.vault.azuredevops.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KeyVault/Pipeline/key.vault.azuredevops.ci.yaml -------------------------------------------------------------------------------- /Modules/KeyVault/Policy/key.vault.arm.policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KeyVault/Policy/key.vault.arm.policies.json -------------------------------------------------------------------------------- /Modules/KeyVault/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/KeyVault/Scripts/create.keys.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KeyVault/Scripts/create.keys.ps1 -------------------------------------------------------------------------------- /Modules/KeyVault/Scripts/key.vault.backup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KeyVault/Scripts/key.vault.backup.ps1 -------------------------------------------------------------------------------- /Modules/KeyVault/Scripts/key.vault.log.analytics.register.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KeyVault/Scripts/key.vault.log.analytics.register.ps1 -------------------------------------------------------------------------------- /Modules/KeyVault/Scripts/key.vault.restore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KeyVault/Scripts/key.vault.restore.ps1 -------------------------------------------------------------------------------- /Modules/KeyVault/Scripts/key.vault.secrect.rules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KeyVault/Scripts/key.vault.secrect.rules.ps1 -------------------------------------------------------------------------------- /Modules/KeyVault/Tests/enable.service.endpoint.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KeyVault/Tests/enable.service.endpoint.parameters.json -------------------------------------------------------------------------------- /Modules/KeyVault/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KeyVault/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/KeyVault/Tests/output.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KeyVault/Tests/output.test.ps1 -------------------------------------------------------------------------------- /Modules/KeyVault/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KeyVault/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/KeyVault/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KeyVault/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/KeyVault/Tests/without.service.endpoint.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KeyVault/Tests/without.service.endpoint.parameters.json -------------------------------------------------------------------------------- /Modules/KeyVault/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KeyVault/deploy.json -------------------------------------------------------------------------------- /Modules/KeyVault/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KeyVault/readme.md -------------------------------------------------------------------------------- /Modules/KustoCluster/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/KustoCluster/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/KustoCluster/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/KustoCluster/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/KustoCluster/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KustoCluster/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/KustoCluster/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KustoCluster/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/KustoCluster/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KustoCluster/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/KustoCluster/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KustoCluster/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/KustoCluster/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KustoCluster/deploy.json -------------------------------------------------------------------------------- /Modules/KustoCluster/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KustoCluster/readme.md -------------------------------------------------------------------------------- /Modules/KustoDatabase/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/KustoDatabase/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/KustoDatabase/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/KustoDatabase/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/KustoDatabase/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KustoDatabase/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/KustoDatabase/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KustoDatabase/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/KustoDatabase/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KustoDatabase/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/KustoDatabase/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KustoDatabase/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/KustoDatabase/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KustoDatabase/deploy.json -------------------------------------------------------------------------------- /Modules/KustoDatabase/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/KustoDatabase/readme.md -------------------------------------------------------------------------------- /Modules/LoadBalancers/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/LoadBalancers/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/LoadBalancers/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/LoadBalancers/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/LoadBalancers/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/LoadBalancers/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/LoadBalancers/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/LoadBalancers/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/LoadBalancers/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/LoadBalancers/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/LoadBalancers/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/LoadBalancers/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/LoadBalancers/deploy.json -------------------------------------------------------------------------------- /Modules/LogAnalytics/Pipeline/log.analytics.azuredevops.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/LogAnalytics/Pipeline/log.analytics.azuredevops.ci.yaml -------------------------------------------------------------------------------- /Modules/LogAnalytics/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/LogAnalytics/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/LogAnalytics/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/LogAnalytics/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/LogAnalytics/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/LogAnalytics/Tests/output.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/LogAnalytics/Tests/output.test.ps1 -------------------------------------------------------------------------------- /Modules/LogAnalytics/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/LogAnalytics/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/LogAnalytics/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/LogAnalytics/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/LogAnalytics/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/LogAnalytics/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/LogAnalytics/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/LogAnalytics/deploy.json -------------------------------------------------------------------------------- /Modules/LogAnalytics/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/LogAnalytics/readme.md -------------------------------------------------------------------------------- /Modules/LogicApps/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/LogicApps/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/LogicApps/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/LogicApps/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/LogicApps/Tests/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/LogicApps/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/LogicApps/_README.md -------------------------------------------------------------------------------- /Modules/LogicApps/logic.apps.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/LogicApps/logic.apps.deploy.json -------------------------------------------------------------------------------- /Modules/LogicApps/logic.apps.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/LogicApps/logic.apps.parameters.json -------------------------------------------------------------------------------- /Modules/MachineLearning/Pipeline/machine.learning.azuredevops.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/MachineLearning/Pipeline/machine.learning.azuredevops.ci.yaml -------------------------------------------------------------------------------- /Modules/MachineLearning/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/MachineLearning/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/MachineLearning/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/MachineLearning/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/MachineLearning/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/MachineLearning/Tests/output.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/MachineLearning/Tests/output.tests.ps1 -------------------------------------------------------------------------------- /Modules/MachineLearning/Tests/test.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/MachineLearning/Tests/test.parameters.json -------------------------------------------------------------------------------- /Modules/MachineLearning/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/MachineLearning/deploy.json -------------------------------------------------------------------------------- /Modules/MachineLearning/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/MachineLearning/readme.md -------------------------------------------------------------------------------- /Modules/MachineLearningServices/Pipeline/machine.learning.azuredevops.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/MachineLearningServices/Pipeline/machine.learning.azuredevops.ci.yaml -------------------------------------------------------------------------------- /Modules/MachineLearningServices/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/MachineLearningServices/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/MachineLearningServices/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/MachineLearningServices/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/MachineLearningServices/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/MachineLearningServices/Tests/output.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/MachineLearningServices/Tests/output.tests.ps1 -------------------------------------------------------------------------------- /Modules/MachineLearningServices/Tests/test.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/MachineLearningServices/Tests/test.parameters.json -------------------------------------------------------------------------------- /Modules/MachineLearningServices/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/MachineLearningServices/deploy.json -------------------------------------------------------------------------------- /Modules/MachineLearningServices/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/MachineLearningServices/readme.md -------------------------------------------------------------------------------- /Modules/MySQL/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/MySQL/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/MySQL/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/MySQL/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/MySQL/Tests/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/MySQL/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/MySQL/_README.md -------------------------------------------------------------------------------- /Modules/MySQL/mysql.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/MySQL/mysql.deploy.json -------------------------------------------------------------------------------- /Modules/MySQL/mysql.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/MySQL/mysql.parameters.json -------------------------------------------------------------------------------- /Modules/NISTControls/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/NISTControls/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/NISTControls/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/NISTControls/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/NISTControls/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/NISTControls/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/NISTControls/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/NISTControls/deploy.json -------------------------------------------------------------------------------- /Modules/NISTControls/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/NISTControls/parameters.json -------------------------------------------------------------------------------- /Modules/NetworkSecurityGroups/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/NetworkSecurityGroups/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/NetworkSecurityGroups/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/NetworkSecurityGroups/Scripts/enable.flow.logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/NetworkSecurityGroups/Scripts/enable.flow.logs.ps1 -------------------------------------------------------------------------------- /Modules/NetworkSecurityGroups/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/NetworkSecurityGroups/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/NetworkSecurityGroups/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/NetworkSecurityGroups/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/NetworkSecurityGroups/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/NetworkSecurityGroups/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/NetworkSecurityGroups/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/NetworkSecurityGroups/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/NetworkSecurityGroups/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/NetworkSecurityGroups/deploy.json -------------------------------------------------------------------------------- /Modules/NetworkSecurityGroups/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/NetworkSecurityGroups/readme.md -------------------------------------------------------------------------------- /Modules/NotificationHub/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/NotificationHub/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/NotificationHub/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/NotificationHub/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/NotificationHub/Tests/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/NotificationHub/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/NotificationHub/_README.md -------------------------------------------------------------------------------- /Modules/NotificationHub/notification.hub.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/NotificationHub/notification.hub.deploy.json -------------------------------------------------------------------------------- /Modules/NotificationHub/notification.hub.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/NotificationHub/notification.hub.parameters.json -------------------------------------------------------------------------------- /Modules/ProximityPlacementGroups/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ProximityPlacementGroups/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ProximityPlacementGroups/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ProximityPlacementGroups/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ProximityPlacementGroups/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/ProximityPlacementGroups/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ProximityPlacementGroups/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/ProximityPlacementGroups/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ProximityPlacementGroups/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/ProximityPlacementGroups/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ProximityPlacementGroups/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/ProximityPlacementGroups/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ProximityPlacementGroups/deploy.json -------------------------------------------------------------------------------- /Modules/RecoveryServicesVaults/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/RecoveryServicesVaults/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/RecoveryServicesVaults/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/RecoveryServicesVaults/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/RecoveryServicesVaults/Tests/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/RecoveryServicesVaults/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/RecoveryServicesVaults/_README.md -------------------------------------------------------------------------------- /Modules/RecoveryServicesVaults/recovery.services.vaults.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/RecoveryServicesVaults/recovery.services.vaults.deploy.json -------------------------------------------------------------------------------- /Modules/RecoveryServicesVaults/recovery.services.vaults.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/RecoveryServicesVaults/recovery.services.vaults.parameters.json -------------------------------------------------------------------------------- /Modules/RedisCache/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/RedisCache/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/RedisCache/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/RedisCache/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/RedisCache/Tests/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/RedisCache/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/RedisCache/_README.md -------------------------------------------------------------------------------- /Modules/RedisCache/redis.cache.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/RedisCache/redis.cache.deploy.json -------------------------------------------------------------------------------- /Modules/RedisCache/redis.cache.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/RedisCache/redis.cache.parameters.json -------------------------------------------------------------------------------- /Modules/RouteTables/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/RouteTables/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/RouteTables/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/RouteTables/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/RouteTables/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/RouteTables/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/RouteTables/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/RouteTables/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/RouteTables/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/RouteTables/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/RouteTables/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/RouteTables/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/RouteTables/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/RouteTables/deploy.json -------------------------------------------------------------------------------- /Modules/RouteTables/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/RouteTables/readme.md -------------------------------------------------------------------------------- /Modules/SQLDBServer/Pipeline/sql.dbserver.azuredevops.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLDBServer/Pipeline/sql.dbserver.azuredevops.ci.yaml -------------------------------------------------------------------------------- /Modules/SQLDBServer/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SQLDBServer/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SQLDBServer/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SQLDBServer/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLDBServer/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/SQLDBServer/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLDBServer/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/SQLDBServer/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLDBServer/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/SQLDBServer/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLDBServer/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/SQLDBServer/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLDBServer/deploy.json -------------------------------------------------------------------------------- /Modules/SQLDBServer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLDBServer/readme.md -------------------------------------------------------------------------------- /Modules/SQLDatabase/Pipeline/sql.database.azuredevops.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLDatabase/Pipeline/sql.database.azuredevops.ci.yaml -------------------------------------------------------------------------------- /Modules/SQLDatabase/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SQLDatabase/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SQLDatabase/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SQLDatabase/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLDatabase/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/SQLDatabase/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLDatabase/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/SQLDatabase/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLDatabase/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/SQLDatabase/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLDatabase/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/SQLDatabase/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLDatabase/deploy.json -------------------------------------------------------------------------------- /Modules/SQLDatabase/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLDatabase/readme.md -------------------------------------------------------------------------------- /Modules/SQLManagedInstances/Pipeline/sql.managed.instances.azuredevops.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLManagedInstances/Pipeline/sql.managed.instances.azuredevops.ci.yaml -------------------------------------------------------------------------------- /Modules/SQLManagedInstances/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SQLManagedInstances/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SQLManagedInstances/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SQLManagedInstances/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLManagedInstances/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/SQLManagedInstances/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLManagedInstances/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/SQLManagedInstances/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLManagedInstances/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/SQLManagedInstances/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLManagedInstances/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/SQLManagedInstances/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLManagedInstances/deploy.json -------------------------------------------------------------------------------- /Modules/SQLManagedInstances/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLManagedInstances/readme.md -------------------------------------------------------------------------------- /Modules/SQLServerAlwaysOn/Pipeline/sql.server.azuredevops.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLServerAlwaysOn/Pipeline/sql.server.azuredevops.ci.yaml -------------------------------------------------------------------------------- /Modules/SQLServerAlwaysOn/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SQLServerAlwaysOn/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SQLServerAlwaysOn/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SQLServerAlwaysOn/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLServerAlwaysOn/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/SQLServerAlwaysOn/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLServerAlwaysOn/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/SQLServerAlwaysOn/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLServerAlwaysOn/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/SQLServerAlwaysOn/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLServerAlwaysOn/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/SQLServerAlwaysOn/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLServerAlwaysOn/deploy.json -------------------------------------------------------------------------------- /Modules/SQLServerAlwaysOn/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SQLServerAlwaysOn/readme.md -------------------------------------------------------------------------------- /Modules/SearchServices/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SearchServices/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SearchServices/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SearchServices/Scripts/search.services.search.index.profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SearchServices/Scripts/search.services.search.index.profile.ps1 -------------------------------------------------------------------------------- /Modules/SearchServices/Tests/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SearchServices/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SearchServices/_README.md -------------------------------------------------------------------------------- /Modules/SearchServices/search.services.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SearchServices/search.services.deploy.json -------------------------------------------------------------------------------- /Modules/SearchServices/search.services.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/SearchServices/search.services.parameters.json -------------------------------------------------------------------------------- /Modules/ServiceBus/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ServiceBus/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ServiceBus/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ServiceBus/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ServiceBus/Tests/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/ServiceBus/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ServiceBus/_README.md -------------------------------------------------------------------------------- /Modules/ServiceBus/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ServiceBus/deploy.json -------------------------------------------------------------------------------- /Modules/ServiceBus/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/ServiceBus/parameters.json -------------------------------------------------------------------------------- /Modules/StorageAccounts/Pipeline/storage.account.azuredevops.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/StorageAccounts/Pipeline/storage.account.azuredevops.ci.yaml -------------------------------------------------------------------------------- /Modules/StorageAccounts/Policy/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/StorageAccounts/Policy/deploy.json -------------------------------------------------------------------------------- /Modules/StorageAccounts/Policy/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/StorageAccounts/Policy/parameters.json -------------------------------------------------------------------------------- /Modules/StorageAccounts/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/StorageAccounts/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/StorageAccounts/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/StorageAccounts/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/StorageAccounts/Tests/no.service.endpoint.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/StorageAccounts/Tests/no.service.endpoint.parameters.json -------------------------------------------------------------------------------- /Modules/StorageAccounts/Tests/output.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/StorageAccounts/Tests/output.tests.ps1 -------------------------------------------------------------------------------- /Modules/StorageAccounts/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/StorageAccounts/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/StorageAccounts/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/StorageAccounts/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/StorageAccounts/Tests/with.service.endpoint.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/StorageAccounts/Tests/with.service.endpoint.parameters.json -------------------------------------------------------------------------------- /Modules/StorageAccounts/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/StorageAccounts/deploy.json -------------------------------------------------------------------------------- /Modules/StorageAccounts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/StorageAccounts/readme.md -------------------------------------------------------------------------------- /Modules/StreamAnalytics/Pipeline/stream.analytics.azuredevops.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/StreamAnalytics/Pipeline/stream.analytics.azuredevops.ci.yaml -------------------------------------------------------------------------------- /Modules/StreamAnalytics/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/StreamAnalytics/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/StreamAnalytics/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/StreamAnalytics/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/StreamAnalytics/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/StreamAnalytics/Tests/output.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/StreamAnalytics/Tests/output.tests.ps1 -------------------------------------------------------------------------------- /Modules/StreamAnalytics/Tests/test.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/StreamAnalytics/Tests/test.parameters.json -------------------------------------------------------------------------------- /Modules/StreamAnalytics/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/StreamAnalytics/deploy.json -------------------------------------------------------------------------------- /Modules/StreamAnalytics/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/StreamAnalytics/readme.md -------------------------------------------------------------------------------- /Modules/UpdateAzureFirewall/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/UpdateAzureFirewall/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/UpdateAzureFirewall/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/UpdateAzureFirewall/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/UpdateAzureFirewall/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/UpdateAzureFirewall/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/UpdateAzureFirewall/Tests/output.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/UpdateAzureFirewall/Tests/output.test.ps1 -------------------------------------------------------------------------------- /Modules/UpdateAzureFirewall/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/UpdateAzureFirewall/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/UpdateAzureFirewall/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/UpdateAzureFirewall/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/UpdateAzureFirewall/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/UpdateAzureFirewall/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/UpdateAzureFirewall/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/UpdateAzureFirewall/deploy.json -------------------------------------------------------------------------------- /Modules/UpdateAzureFirewall/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/UpdateAzureFirewall/readme.md -------------------------------------------------------------------------------- /Modules/VirtualMachineKeyEncryptionKey/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualMachineKeyEncryptionKey/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualMachineKeyEncryptionKey/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualMachineKeyEncryptionKey/Tests/linux.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachineKeyEncryptionKey/Tests/linux.parameters.json -------------------------------------------------------------------------------- /Modules/VirtualMachineKeyEncryptionKey/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachineKeyEncryptionKey/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualMachineKeyEncryptionKey/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachineKeyEncryptionKey/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualMachineKeyEncryptionKey/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachineKeyEncryptionKey/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualMachineKeyEncryptionKey/Tests/windows.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachineKeyEncryptionKey/Tests/windows.parameters.json -------------------------------------------------------------------------------- /Modules/VirtualMachineKeyEncryptionKey/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachineKeyEncryptionKey/deploy.json -------------------------------------------------------------------------------- /Modules/VirtualMachineScaleSets/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualMachineScaleSets/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualMachineScaleSets/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualMachineScaleSets/Tests/linux.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachineScaleSets/Tests/linux.parameters.json -------------------------------------------------------------------------------- /Modules/VirtualMachineScaleSets/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachineScaleSets/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualMachineScaleSets/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachineScaleSets/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualMachineScaleSets/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachineScaleSets/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualMachineScaleSets/Tests/windows.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachineScaleSets/Tests/windows.parameters.json -------------------------------------------------------------------------------- /Modules/VirtualMachineScaleSets/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachineScaleSets/deploy.json -------------------------------------------------------------------------------- /Modules/VirtualMachineScaleSets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachineScaleSets/readme.md -------------------------------------------------------------------------------- /Modules/VirtualMachines/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualMachines/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualMachines/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualMachines/Tests/linux.enable.pip.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachines/Tests/linux.enable.pip.parameters.json -------------------------------------------------------------------------------- /Modules/VirtualMachines/Tests/linux.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachines/Tests/linux.parameters.json -------------------------------------------------------------------------------- /Modules/VirtualMachines/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachines/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualMachines/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachines/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualMachines/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachines/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualMachines/Tests/windows.enable.pip.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachines/Tests/windows.enable.pip.parameters.json -------------------------------------------------------------------------------- /Modules/VirtualMachines/Tests/windows.join.domain.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachines/Tests/windows.join.domain.parameters.json -------------------------------------------------------------------------------- /Modules/VirtualMachines/Tests/windows.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachines/Tests/windows.parameters.json -------------------------------------------------------------------------------- /Modules/VirtualMachines/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachines/deploy.json -------------------------------------------------------------------------------- /Modules/VirtualMachines/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualMachines/readme.md -------------------------------------------------------------------------------- /Modules/VirtualNetwork/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualNetwork/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualNetwork/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualNetwork/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualNetwork/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetwork/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualNetwork/Tests/output.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetwork/Tests/output.test.ps1 -------------------------------------------------------------------------------- /Modules/VirtualNetwork/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetwork/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/VirtualNetwork/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetwork/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualNetwork/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetwork/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualNetwork/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetwork/deploy.json -------------------------------------------------------------------------------- /Modules/VirtualNetwork/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetwork/readme.md -------------------------------------------------------------------------------- /Modules/VirtualNetworkGateway/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualNetworkGateway/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualNetworkGateway/Scripts/virtual.network.gateway.clientcert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkGateway/Scripts/virtual.network.gateway.clientcert.ps1 -------------------------------------------------------------------------------- /Modules/VirtualNetworkGateway/Scripts/virtual.network.gateway.clientcert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkGateway/Scripts/virtual.network.gateway.clientcert.sh -------------------------------------------------------------------------------- /Modules/VirtualNetworkGateway/Scripts/virtual.network.gateway.rootcert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkGateway/Scripts/virtual.network.gateway.rootcert.ps1 -------------------------------------------------------------------------------- /Modules/VirtualNetworkGateway/Scripts/virtual.network.gateway.rootcert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkGateway/Scripts/virtual.network.gateway.rootcert.sh -------------------------------------------------------------------------------- /Modules/VirtualNetworkGateway/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkGateway/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualNetworkGateway/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkGateway/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/VirtualNetworkGateway/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkGateway/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualNetworkGateway/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkGateway/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualNetworkGateway/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkGateway/deploy.json -------------------------------------------------------------------------------- /Modules/VirtualNetworkGateway/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkGateway/readme.md -------------------------------------------------------------------------------- /Modules/VirtualNetworkGatewayConnection/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualNetworkGatewayConnection/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualNetworkGatewayConnection/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualNetworkGatewayConnection/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkGatewayConnection/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualNetworkGatewayConnection/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkGatewayConnection/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/VirtualNetworkGatewayConnection/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkGatewayConnection/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualNetworkGatewayConnection/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkGatewayConnection/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualNetworkGatewayConnection/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkGatewayConnection/deploy.json -------------------------------------------------------------------------------- /Modules/VirtualNetworkGatewayConnection/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkGatewayConnection/readme.md -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeering/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeering/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeering/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeering/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeering/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkPeering/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeering/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkPeering/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeering/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkPeering/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeering/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkPeering/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeering/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkPeering/deploy.json -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeering/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkPeering/readme.md -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeeringCross/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeeringCross/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeeringCross/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeeringCross/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeeringCross/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkPeeringCross/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeeringCross/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkPeeringCross/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeeringCross/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkPeeringCross/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeeringCross/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkPeeringCross/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeeringCross/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkPeeringCross/deploy.json -------------------------------------------------------------------------------- /Modules/VirtualNetworkPeeringCross/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/VirtualNetworkPeeringCross/readme.md -------------------------------------------------------------------------------- /Modules/WVDApplicationGroup/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/WVDApplicationGroup/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/WVDApplicationGroup/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/WVDApplicationGroup/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/WVDApplicationGroup/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/WVDApplicationGroup/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/WVDApplicationGroup/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/WVDApplicationGroup/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/WVDApplicationGroup/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/WVDApplicationGroup/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/WVDApplicationGroup/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/WVDApplicationGroup/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/WVDApplicationGroup/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/WVDApplicationGroup/deploy.json -------------------------------------------------------------------------------- /Modules/WVDApplicationGroup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/WVDApplicationGroup/readme.md -------------------------------------------------------------------------------- /Modules/WVDHostPool/Pipeline/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/WVDHostPool/Policy/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/WVDHostPool/RBAC/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/WVDHostPool/Scripts/git_placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/WVDHostPool/Tests/module.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/WVDHostPool/Tests/module.tests.ps1 -------------------------------------------------------------------------------- /Modules/WVDHostPool/Tests/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/WVDHostPool/Tests/parameters.json -------------------------------------------------------------------------------- /Modules/WVDHostPool/Tests/policy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/WVDHostPool/Tests/policy.tests.ps1 -------------------------------------------------------------------------------- /Modules/WVDHostPool/Tests/rbac.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/WVDHostPool/Tests/rbac.tests.ps1 -------------------------------------------------------------------------------- /Modules/WVDHostPool/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/WVDHostPool/deploy.json -------------------------------------------------------------------------------- /Modules/WVDHostPool/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/WVDHostPool/readme.md -------------------------------------------------------------------------------- /Modules/deploying-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/deploying-modules.md -------------------------------------------------------------------------------- /Modules/module-readme-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/module-readme-template.md -------------------------------------------------------------------------------- /Modules/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/readme.md -------------------------------------------------------------------------------- /Modules/testing-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Modules/testing-modules.md -------------------------------------------------------------------------------- /Orchestration/Bootstrap/Initialize.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Bootstrap/Initialize.ps1 -------------------------------------------------------------------------------- /Orchestration/Common/Helper.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Common/Helper.psd1 -------------------------------------------------------------------------------- /Orchestration/Common/Helper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Common/Helper.psm1 -------------------------------------------------------------------------------- /Orchestration/DataService/Implementations/CacheDataService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/DataService/Implementations/CacheDataService.ps1 -------------------------------------------------------------------------------- /Orchestration/DataService/Implementations/DeploymentAuditDataService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/DataService/Implementations/DeploymentAuditDataService.ps1 -------------------------------------------------------------------------------- /Orchestration/DataService/Implementations/ModuleStateDataService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/DataService/Implementations/ModuleStateDataService.ps1 -------------------------------------------------------------------------------- /Orchestration/DataService/Interface/ICacheDataService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/DataService/Interface/ICacheDataService.ps1 -------------------------------------------------------------------------------- /Orchestration/DataService/Interface/IDeploymentAuditDataService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/DataService/Interface/IDeploymentAuditDataService.ps1 -------------------------------------------------------------------------------- /Orchestration/DataService/Interface/IModuleStateDataService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/DataService/Interface/IModuleStateDataService.ps1 -------------------------------------------------------------------------------- /Orchestration/Factory/Factory.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Factory/Factory.psd1 -------------------------------------------------------------------------------- /Orchestration/Factory/Factory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Factory/Factory.psm1 -------------------------------------------------------------------------------- /Orchestration/Factory/ImportModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Factory/ImportModules.ps1 -------------------------------------------------------------------------------- /Orchestration/IntegrationService/Implementations/AzureResourceManagerDeploymentService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/IntegrationService/Implementations/AzureResourceManagerDeploymentService.ps1 -------------------------------------------------------------------------------- /Orchestration/IntegrationService/Interface/IDeploymentService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/IntegrationService/Interface/IDeploymentService.ps1 -------------------------------------------------------------------------------- /Orchestration/OrchestrationService/Cleanup_Script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/OrchestrationService/Cleanup_Script.ps1 -------------------------------------------------------------------------------- /Orchestration/OrchestrationService/ConfigurationBuilder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/OrchestrationService/ConfigurationBuilder.ps1 -------------------------------------------------------------------------------- /Orchestration/OrchestrationService/CustomScriptExecution.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/OrchestrationService/CustomScriptExecution.ps1 -------------------------------------------------------------------------------- /Orchestration/OrchestrationService/ModuleConfigurationDeployment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/OrchestrationService/ModuleConfigurationDeployment.ps1 -------------------------------------------------------------------------------- /Orchestration/OrchestrationService/Pre_req_script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/OrchestrationService/Pre_req_script.ps1 -------------------------------------------------------------------------------- /Orchestration/OrchestrationService/TopologicalSort/DirectedGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/OrchestrationService/TopologicalSort/DirectedGraph.cs -------------------------------------------------------------------------------- /Orchestration/OrchestrationService/TopologicalSort/TopologicalSort.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/OrchestrationService/TopologicalSort/TopologicalSort.csproj -------------------------------------------------------------------------------- /Orchestration/OrchestrationService/TopologicalSort/Vertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/OrchestrationService/TopologicalSort/Vertex.cs -------------------------------------------------------------------------------- /Orchestration/OrchestrationService/ValidationResourceGroupSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/OrchestrationService/ValidationResourceGroupSetup.ps1 -------------------------------------------------------------------------------- /Orchestration/RepositoryService/Implementations/AzureDevOpsCacheRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/RepositoryService/Implementations/AzureDevOpsCacheRepository.ps1 -------------------------------------------------------------------------------- /Orchestration/RepositoryService/Implementations/BlobContainerAuditRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/RepositoryService/Implementations/BlobContainerAuditRepository.ps1 -------------------------------------------------------------------------------- /Orchestration/RepositoryService/Implementations/BlobContainerStateRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/RepositoryService/Implementations/BlobContainerStateRepository.ps1 -------------------------------------------------------------------------------- /Orchestration/RepositoryService/Implementations/LocalCacheRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/RepositoryService/Implementations/LocalCacheRepository.ps1 -------------------------------------------------------------------------------- /Orchestration/RepositoryService/Implementations/LocalStorageAuditRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/RepositoryService/Implementations/LocalStorageAuditRepository.ps1 -------------------------------------------------------------------------------- /Orchestration/RepositoryService/Implementations/LocalStorageStateRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/RepositoryService/Implementations/LocalStorageStateRepository.ps1 -------------------------------------------------------------------------------- /Orchestration/RepositoryService/Interface/IAuditRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/RepositoryService/Interface/IAuditRepository.ps1 -------------------------------------------------------------------------------- /Orchestration/RepositoryService/Interface/ICacheRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/RepositoryService/Interface/ICacheRepository.ps1 -------------------------------------------------------------------------------- /Orchestration/RepositoryService/Interface/IStateRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/RepositoryService/Interface/IStateRepository.ps1 -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/environment-keys/archetypeDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/environment-keys/archetypeDefinition.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/nested-file-functions/comment1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/nested-file-functions/comment1.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/nested-file-functions/paas/archetype-definition-array-filefn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/nested-file-functions/paas/archetype-definition-array-filefn.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/nested-file-functions/paas/archetype-definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/nested-file-functions/paas/archetype-definition.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/nested-file-functions/paas/arrays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/nested-file-functions/paas/arrays.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/nested-file-functions/paas/comment2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/nested-file-functions/paas/comment2.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/nested-file-functions/paas/comment3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/nested-file-functions/paas/comment3.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/nested-file-functions/paas/comment4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/nested-file-functions/paas/comment4.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/nested-file-functions/paas/common/comment3.json: -------------------------------------------------------------------------------- 1 | Testing With Test Data -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/nested-file-functions/paas/common/subscriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/nested-file-functions/paas/common/subscriptions.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/nested-file-functions/paas/common/toolkit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/nested-file-functions/paas/common/toolkit.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/nested-file-functions/paas/subscriptions/on-premises-subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/nested-file-functions/paas/subscriptions/on-premises-subscription.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/nested-file-functions/paas/subscriptions/shared-services-subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/nested-file-functions/paas/subscriptions/shared-services-subscription.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/nested-file-functions/paas/subscriptions/toolkit-subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/nested-file-functions/paas/subscriptions/toolkit-subscription.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/scripts/bash-script-order.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/scripts/bash-script-order.sh -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/scripts/sample-script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/scripts/sample-script.ps1 -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/scripts/sample-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/scripts/sample-script.sh -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/shared-services/archetype-definition-tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/shared-services/archetype-definition-tests.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/shared-services/archetype-definition.additional.props.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/shared-services/archetype-definition.additional.props.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/shared-services/archetype-definition.rel-path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/shared-services/archetype-definition.rel-path.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/shared-services/orchestrations/archetype-orchestration-absPathFn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/shared-services/orchestrations/archetype-orchestration-absPathFn.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/shared-services/orchestrations/archetype-orchestration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/shared-services/orchestrations/archetype-orchestration.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/shared-services/orchestrations/orchestration-custom-scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/shared-services/orchestrations/orchestration-custom-scripts.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/shared-services/parameters/archetype-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/shared-services/parameters/archetype-parameters.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/shared-services/subscriptions/subscriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/shared-services/subscriptions/subscriptions.json -------------------------------------------------------------------------------- /Orchestration/Tests/Samples/shared-services/toolkit-components/toolkit-components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/Samples/shared-services/toolkit-components/toolkit-components.json -------------------------------------------------------------------------------- /Orchestration/Tests/UnitTests/AzureDevOpsCacheRepository.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/UnitTests/AzureDevOpsCacheRepository.Tests.ps1 -------------------------------------------------------------------------------- /Orchestration/Tests/UnitTests/AzureResourceManagerDeploymentService.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/UnitTests/AzureResourceManagerDeploymentService.Tests.ps1 -------------------------------------------------------------------------------- /Orchestration/Tests/UnitTests/BlobContainerAuditRepository.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/UnitTests/BlobContainerAuditRepository.Tests.ps1 -------------------------------------------------------------------------------- /Orchestration/Tests/UnitTests/BlobContainerStateRepository.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/UnitTests/BlobContainerStateRepository.Tests.ps1 -------------------------------------------------------------------------------- /Orchestration/Tests/UnitTests/CacheDataService.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/UnitTests/CacheDataService.Tests.ps1 -------------------------------------------------------------------------------- /Orchestration/Tests/UnitTests/ConfigurationBuilder.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/UnitTests/ConfigurationBuilder.Tests.ps1 -------------------------------------------------------------------------------- /Orchestration/Tests/UnitTests/CustomScriptExecution.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/UnitTests/CustomScriptExecution.Tests.ps1 -------------------------------------------------------------------------------- /Orchestration/Tests/UnitTests/Deployment.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/UnitTests/Deployment.feature -------------------------------------------------------------------------------- /Orchestration/Tests/UnitTests/DeploymentAuditDataService.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/UnitTests/DeploymentAuditDataService.Tests.ps1 -------------------------------------------------------------------------------- /Orchestration/Tests/UnitTests/LocalCacheRepository.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/UnitTests/LocalCacheRepository.Tests.ps1 -------------------------------------------------------------------------------- /Orchestration/Tests/UnitTests/ModuleConfigurationDeployment.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/UnitTests/ModuleConfigurationDeployment.Tests.ps1 -------------------------------------------------------------------------------- /Orchestration/Tests/UnitTests/RunAll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/UnitTests/RunAll.ps1 -------------------------------------------------------------------------------- /Orchestration/Tests/UnitTests/TokenReplacementService.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/UnitTests/TokenReplacementService.Tests.ps1 -------------------------------------------------------------------------------- /Orchestration/Tests/UnitTests/ValidationResourceGroupSetup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/Tests/UnitTests/ValidationResourceGroupSetup.Tests.ps1 -------------------------------------------------------------------------------- /Orchestration/TokenReplacementService/Implementations/TokenReplacementService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/TokenReplacementService/Implementations/TokenReplacementService.ps1 -------------------------------------------------------------------------------- /Orchestration/TokenReplacementService/Interface/ITokenReplacementService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Orchestration/TokenReplacementService/Interface/ITokenReplacementService.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/README.md -------------------------------------------------------------------------------- /RunAllTestsPipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/RunAllTestsPipeline.yml -------------------------------------------------------------------------------- /Scripts/AKS/create-and-upload-ca-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/AKS/create-and-upload-ca-cert.sh -------------------------------------------------------------------------------- /Scripts/AKS/create-and-upload-helm-and-tiller-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/AKS/create-and-upload-helm-and-tiller-certs.sh -------------------------------------------------------------------------------- /Scripts/AKS/create-cluster-rbac-role-bindings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/AKS/create-cluster-rbac-role-bindings.sh -------------------------------------------------------------------------------- /Scripts/AKS/create-sign-w-x509-and-upload-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/AKS/create-sign-w-x509-and-upload-cert.sh -------------------------------------------------------------------------------- /Scripts/AKS/create-tiller-enabled-namespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/AKS/create-tiller-enabled-namespace.sh -------------------------------------------------------------------------------- /Scripts/AKS/install-kubectl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/AKS/install-kubectl.sh -------------------------------------------------------------------------------- /Scripts/AKS/install-secured-tiller-instance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/AKS/install-secured-tiller-instance.sh -------------------------------------------------------------------------------- /Scripts/AKS/view-all-cluster-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/AKS/view-all-cluster-role.yaml -------------------------------------------------------------------------------- /Scripts/Subscription/NewSubscription.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Subscription/NewSubscription.ps1 -------------------------------------------------------------------------------- /Scripts/Windows/CreateHADB.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/CreateHADB.ps1.zip -------------------------------------------------------------------------------- /Scripts/Windows/PrepareSQLServer.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/PrepareSQLServer.ps1.zip -------------------------------------------------------------------------------- /Scripts/Windows/PrepareSQLServer_Install_Modules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/PrepareSQLServer_Install_Modules.ps1 -------------------------------------------------------------------------------- /Scripts/Windows/add-Arecord-to-dns.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/add-Arecord-to-dns.ps1 -------------------------------------------------------------------------------- /Scripts/Windows/adds_wait_for_bitlocker.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/adds_wait_for_bitlocker.zip -------------------------------------------------------------------------------- /Scripts/Windows/adds_with_format.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/adds_with_format.zip -------------------------------------------------------------------------------- /Scripts/Windows/adds_without_reboot.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/adds_without_reboot.zip -------------------------------------------------------------------------------- /Scripts/Windows/create-new-cloud-ad-site.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/create-new-cloud-ad-site.ps1 -------------------------------------------------------------------------------- /Scripts/Windows/enable-local-policy-settings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/enable-local-policy-settings.ps1 -------------------------------------------------------------------------------- /Scripts/Windows/formatDataDisks.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/formatDataDisks.zip -------------------------------------------------------------------------------- /Scripts/Windows/formatDisk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/formatDisk.zip -------------------------------------------------------------------------------- /Scripts/Windows/getPublicIP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/getPublicIP.ps1 -------------------------------------------------------------------------------- /Scripts/Windows/group_policy_settings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/group_policy_settings.ps1 -------------------------------------------------------------------------------- /Scripts/Windows/iisaspnet.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/iisaspnet.zip -------------------------------------------------------------------------------- /Scripts/Windows/install_ADDS_No_Disk_Format.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/install_ADDS_No_Disk_Format.zip -------------------------------------------------------------------------------- /Scripts/Windows/joinComputerToDomain.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/joinComputerToDomain.zip -------------------------------------------------------------------------------- /Scripts/Windows/new-dns-zone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/new-dns-zone.ps1 -------------------------------------------------------------------------------- /Scripts/Windows/newADDomain.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/newADDomain.zip -------------------------------------------------------------------------------- /Scripts/Windows/one-way-trust-dc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/one-way-trust-dc.ps1 -------------------------------------------------------------------------------- /Scripts/Windows/reboot_vm_async.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/reboot_vm_async.ps1 -------------------------------------------------------------------------------- /Scripts/Windows/sample-output.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/sample-output.ps1 -------------------------------------------------------------------------------- /Scripts/Windows/sleep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/sleep.ps1 -------------------------------------------------------------------------------- /Scripts/Windows/xCustomBitlocker.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/Scripts/Windows/xCustomBitlocker.zip -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/action.yml -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/dockerfile -------------------------------------------------------------------------------- /entrypoint1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/entrypoint1.ps1 -------------------------------------------------------------------------------- /images/inputFile_line_change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/images/inputFile_line_change.png -------------------------------------------------------------------------------- /images/input_file_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/images/input_file_ex.png -------------------------------------------------------------------------------- /images/input_file_ex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/images/input_file_ex2.png -------------------------------------------------------------------------------- /images/input_file_ex3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/images/input_file_ex3.png -------------------------------------------------------------------------------- /images/master_script_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/images/master_script_ex.png -------------------------------------------------------------------------------- /images/orchestration_enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/images/orchestration_enable.png -------------------------------------------------------------------------------- /images/storage_account_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/images/storage_account_ex1.png -------------------------------------------------------------------------------- /images/storage_account_ex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/images/storage_account_ex2.png -------------------------------------------------------------------------------- /inputFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/vdc/HEAD/inputFile.json --------------------------------------------------------------------------------