├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── 0-everything.yml │ ├── 1-management-groups.yml │ ├── 2-roles.yml │ ├── 3-logging.yml │ ├── 4-policy.yml │ ├── 5-azure-firewall-policy.yml │ ├── 5-hub-network-with-azure-firewall.yml │ ├── 5-hub-network-with-nva.yml │ ├── 6-identity.yml │ ├── 7-subscriptions.yml │ ├── README.md │ ├── consistency-check.yml │ ├── pull-request-check.yml │ └── stale.yml ├── .gitignore ├── .pipelines ├── README.md ├── demo-approval.yml ├── linters.yml ├── management-groups.yml ├── platform-connectivity-hub-azfw-policy.yml ├── platform-connectivity-hub-azfw.yml ├── platform-connectivity-hub-nva.yml ├── platform-identity.yml ├── platform-logging.yml ├── policy.yml ├── pull-request-check.yml ├── roles.yml ├── subscriptions.yml └── templates │ ├── jobs │ ├── deploy-subscription.yml │ └── trigger-subscriptions.yml │ └── steps │ ├── assign-policy.yml │ ├── config-subscription.yml │ ├── create-roles.yml │ ├── define-policy.yml │ ├── define-policyset.yml │ ├── deploy-management-groups.yml │ ├── deploy-platform-connectivity-hub-azfw-policy.yml │ ├── deploy-platform-connectivity-hub-azfw.yml │ ├── deploy-platform-connectivity-hub-nva.yml │ ├── deploy-platform-identity.yml │ ├── deploy-platform-logging.yml │ ├── deploy-subscription.yml │ ├── load-log-analytics-vars.yml │ ├── load-variables.yml │ ├── move-subscription.yml │ ├── run-linter.yml │ └── show-variables.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── azresources ├── analytics │ ├── adf │ │ ├── adf-with-cmk.bicep │ │ ├── adf-without-cmk.bicep │ │ └── main.bicep │ ├── aml │ │ ├── aml-with-cmk.bicep │ │ ├── aml-without-cmk.bicep │ │ └── main.bicep │ ├── databricks │ │ └── main.bicep │ ├── stream-analytics │ │ └── main.bicep │ └── synapse │ │ ├── main.bicep │ │ ├── synapse-with-cmk.bicep │ │ └── synapse-without-cmk.bicep ├── automation │ └── automation-account.bicep ├── compute │ ├── fhir.bicep │ ├── vm-ubuntu1804 │ │ ├── main.bicep │ │ ├── vm-ubuntu1804-with-cmk.bicep │ │ └── vm-ubuntu1804-without-cmk.bicep │ ├── vm-win2019 │ │ ├── main.bicep │ │ ├── vm-win2019-with-cmk.bicep │ │ └── vm-win2019-without-cmk.bicep │ └── web │ │ ├── app-service-plan-linux.bicep │ │ ├── appservice-linux-container.bicep │ │ ├── appservice-linux.bicep │ │ └── functions-python-linux.bicep ├── containers │ ├── acr │ │ ├── acr-with-cmk.bicep │ │ ├── acr-without-cmk.bicep │ │ └── main.bicep │ └── aks │ │ ├── aks-with-cmk.bicep │ │ ├── aks-without-cmk.bicep │ │ └── main.bicep ├── cost │ └── budget-subscription.bicep ├── data │ ├── sqldb │ │ ├── main.bicep │ │ ├── sqldb-with-cmk-enable-tde.bicep │ │ ├── sqldb-with-cmk.bicep │ │ └── sqldb-without-cmk.bicep │ └── sqlmi │ │ ├── main.bicep │ │ ├── sqlmi-with-cmk-enable-tde.bicep │ │ ├── sqlmi-with-cmk.bicep │ │ └── sqlmi-without-cmk.bicep ├── iam │ ├── resource │ │ ├── key-vault-role-assignment-to-sp.bicep │ │ ├── private-dns-zone-role-assignment-to-sp.bicep │ │ ├── route-table-role-assignment-to-sp.bicep │ │ ├── storage-role-assignment-to-sp.bicep │ │ └── virtual-network-role-assignment-to-sp.bicep │ ├── resourceGroup │ │ └── role-assignment-to-sp.bicep │ ├── subscription │ │ ├── role-assignment-to-group.bicep │ │ └── role-assignment-to-sp.bicep │ └── user-assigned-identity.bicep ├── integration │ └── eventhub.bicep ├── management │ └── backup-recovery-vault.bicep ├── monitor │ ├── ai-web.bicep │ ├── dcr-azure-monitor-logs.bicep │ └── log-analytics.bicep ├── network │ ├── app-gateway-v2-waf.bicep │ ├── bastion.bicep │ ├── ddos-standard.bicep │ ├── dns-forwarding-ruleset.bicep │ ├── dnsresolver-vnet-link.bicep │ ├── dnsresolver.bicep │ ├── firewall.bicep │ ├── lb-egress.bicep │ ├── nsg │ │ ├── nsg-allowall.bicep │ │ ├── nsg-appgwv2.bicep │ │ ├── nsg-bastion.bicep │ │ ├── nsg-databricks.bicep │ │ ├── nsg-empty.bicep │ │ └── nsg-sqlmi.bicep │ ├── private-dns-zone-privatelinks.bicep │ ├── private-dns-zone-virtual-network-link.bicep │ ├── private-dns-zone.bicep │ ├── udr │ │ ├── udr-custom.bicep │ │ ├── udr-databricks-private.bicep │ │ ├── udr-databricks-public.bicep │ │ └── udr-sqlmi.bicep │ └── vnet-peering.bicep ├── security-center │ └── asc.bicep ├── security │ ├── key-vault-key-rsa2048.bicep │ ├── key-vault-secret.bicep │ └── key-vault.bicep ├── service-health │ ├── service-health-caller-params.json │ ├── service-health-params.json │ └── service-health.bicep ├── storage │ ├── storage-adlsgen2-fs.bicep │ ├── storage-adlsgen2.bicep │ ├── storage-enable-cmk.bicep │ └── storage-generalpurpose.bicep ├── telemetry │ ├── customer-usage-attribution-management-group.bicep │ ├── customer-usage-attribution-resource-group.bicep │ ├── customer-usage-attribution-subscription.bicep │ └── customer-usage-attribution-tenant.bicep └── util │ ├── delete-lock.bicep │ ├── deployment-script.bicep │ ├── wait-on-arm-subscription.bicep │ ├── wait-on-arm.bicep │ ├── wait-subscription.bicep │ └── wait.bicep ├── bicepconfig.json ├── config ├── identity │ └── CanadaPubSecALZ-main │ │ └── identity.parameters.json ├── linters │ ├── .ansible-lint.yml │ ├── .cfnlintrc.yml │ ├── .chktexrc │ ├── .clj-kondo │ │ └── config.edn │ ├── .coffee-lint.json │ ├── .ecrc │ ├── .eslintrc.yml │ ├── .flake8 │ ├── .golangci.yml │ ├── .groovylintrc.json │ ├── .hadolint.yaml │ ├── .htmlhintrc │ ├── .lintr │ ├── .luacheckrc │ ├── .markdown-lint.yml │ ├── .openapirc.yml │ ├── .perlcriticrc │ ├── .protolintrc.yml │ ├── .python-black │ ├── .python-lint │ ├── .ruby-lint.yml │ ├── .snakefmt.toml │ ├── .sql-config.json │ ├── .stylelintrc.json │ ├── .yaml-lint.yml │ ├── analysis_options.yml │ └── sun_checks.xml ├── logging │ └── CanadaPubSecALZ-main │ │ └── logging.parameters.json ├── networking │ └── CanadaPubSecALZ-main │ │ ├── hub-azfw-policy │ │ └── azure-firewall-policy.parameters.json │ │ ├── hub-azfw │ │ └── hub-network.parameters.json │ │ └── hub-nva │ │ └── hub-network.parameters.json ├── subscriptions │ ├── CanadaPubSecALZ-main │ │ └── DevTest │ │ │ ├── 0a5970ed-b9d5-464a-acef-8a06f0d7a360_machinelearning_canadacentral.json │ │ │ ├── 1f519216-5e39-4b51-a9b6-10cc2b79b6c7_healthcare_canadacentral.json │ │ │ ├── 8422552f-3840-4934-a971-6ee349ffbb05_generic-subscription_canadacentral.json │ │ │ ├── 9d9817f5-c218-4553-b686-58be8d9ea82c_machinelearning_canadacentral.json │ │ │ ├── bbe30f1a-fda5-4873-b51b-c838cf3f1a61_machinelearning_canadacentral.json │ │ │ └── f881fccb-2598-4b9c-b87c-b392f5e16f12_machinelearning_canadacentral.json │ └── README.md ├── telemetry.json └── variables │ ├── CanadaPubSecALZ-main.yml │ ├── README.md │ └── common.yml ├── docs ├── archetypes │ ├── authoring-guide.md │ ├── generic-subscription.md │ ├── healthcare.md │ ├── hubnetwork-azfw.md │ ├── hubnetwork-nva-fortigate.md │ ├── identity.md │ ├── logging.md │ └── machinelearning.md ├── architecture.md ├── gc-30-day-cloud-guardrails.md ├── media │ ├── archetypes │ │ ├── egressvirtualApplianceIP.jpg │ │ ├── resource-tags-and-naming-conventions.jpg │ │ ├── security-center-contact-info.jpg │ │ ├── service-health-alerts-receivers.jpg │ │ ├── subscription-role-assignments.jpg │ │ └── virtual-network-id.jpg │ ├── architecture │ │ ├── ado-approvals-checks.jpg │ │ ├── ado-pipelines.jpg │ │ ├── archetype-generic-subscription.jpg │ │ ├── archetype-healthcare-dataflow.jpg │ │ ├── archetype-healthcare-networking.jpg │ │ ├── archetype-healthcare.jpg │ │ ├── archetype-identity.jpg │ │ ├── archetype-logging.jpg │ │ ├── archetype-machinelearning-dataflow.jpg │ │ ├── archetype-machinelearning-networking.jpg │ │ ├── archetype-machinelearning.jpg │ │ ├── defender-regulatory-compliance.jpg │ │ ├── defender-security-policy.jpg │ │ ├── hubnetwork-azfw │ │ │ ├── azfw-diagnostic-settings.jpg │ │ │ ├── azfw-logs-dns.jpg │ │ │ ├── azfw-logs-fw.jpg │ │ │ ├── azfw-policy-app-rules.jpg │ │ │ ├── azfw-policy-network-rules.jpg │ │ │ ├── azfw-policy-rulecollections.jpg │ │ │ ├── hubnetwork-azfw-design.jpg │ │ │ ├── hubvnet-address-space.jpg │ │ │ ├── hubvnet-subnets.jpg │ │ │ ├── mrz-udr.jpg │ │ │ ├── mrzvnet-address-space.jpg │ │ │ └── mrzvnet-subnets.jpg │ │ ├── hubnetwork-nva │ │ │ ├── hubnetwork-nva-design.jpg │ │ │ ├── hubvnet-address-space.jpg │ │ │ ├── hubvnet-subnets.jpg │ │ │ ├── mrz-udr.jpg │ │ │ ├── mrzvnet-address-space.jpg │ │ │ └── mrzvnet-subnets.jpg │ │ ├── hubnetwork-private-link-central-dns.png │ │ ├── log-analytics-workspace.jpg │ │ ├── management-group-structure.jpg │ │ ├── policy-compliance.jpg │ │ ├── policy-remediation-status.jpg │ │ ├── policy-remediation.jpg │ │ └── tags.jpg │ └── onboarding │ │ ├── import-a-git-repo.png │ │ ├── management-groups-01.png │ │ ├── management-groups-02.png │ │ ├── management-groups-03.png │ │ ├── management-groups-04.png │ │ ├── run-1-1.png │ │ ├── run-1-2.png │ │ ├── run-1-3.png │ │ ├── run-2-1.png │ │ ├── run-2-2.png │ │ ├── run-2-3.png │ │ ├── run-2-4.png │ │ ├── run-3-1.png │ │ ├── run-3-2.png │ │ └── run-3-3.png ├── onboarding │ ├── azure-devops-pipelines.md │ ├── azure-devops-scripts.md │ ├── azure-devops-setup.md │ └── configuration-scripts.md ├── policy │ ├── authoring-guide.md │ └── readme.md └── visio │ ├── 01 - Management Group Design.vsdx │ ├── 02 - Logging Design.vsdx │ ├── 03 - Tags Design.vsdx │ ├── 04 - Hub Network Design.vsdx │ └── 05 - Archetypes.vsdx ├── landingzones ├── lz-generic-subscription │ ├── main.bicep │ ├── networking.bicep │ └── readme.md ├── lz-healthcare │ ├── lz.bicep │ ├── main.bicep │ ├── networking.bicep │ └── readme.md ├── lz-machinelearning │ ├── lz.bicep │ ├── main.bicep │ ├── networking.bicep │ └── readme.md ├── lz-platform-connectivity-hub-azfw │ ├── azfw-policy │ │ └── azure-firewall-policy.bicep │ ├── bicepconfig.json │ ├── hub │ │ ├── hub-vnet-routes.bicep │ │ └── hub-vnet.bicep │ ├── main-azfw-policy.bicep │ ├── main.bicep │ ├── mrz │ │ ├── mrz-vnet.bicep │ │ └── mrz.bicep │ └── paz │ │ └── paz.bicep ├── lz-platform-connectivity-hub-nva │ ├── hub │ │ ├── hub-vnet.bicep │ │ └── lb-firewalls-hub.bicep │ ├── main.bicep │ ├── mrz │ │ ├── mrz-vnet.bicep │ │ └── mrz.bicep │ ├── nva │ │ └── nva-vm.bicep │ └── paz │ │ └── paz.bicep ├── lz-platform-identity │ ├── dnsResolver.bicep │ ├── main.bicep │ └── networking.bicep ├── lz-platform-logging │ └── main.bicep ├── scaffold-subscription.bicep └── utils │ └── mg-move │ └── move-subscription.bicep ├── management-groups ├── structure-v2.bicep └── structure.bicep ├── policy ├── builtin │ └── assignments │ │ ├── asb.bicep │ │ ├── asb.parameters.json │ │ ├── cis-msft-130.bicep │ │ ├── cis-msft-130.parameters.json │ │ ├── fedramp-moderate.bicep │ │ ├── fedramp-moderate.parameters.json │ │ ├── hitrust-hipaa.bicep │ │ ├── hitrust-hipaa.parameters.json │ │ ├── location.bicep │ │ ├── location.parameters.json │ │ ├── nist80053r4.bicep │ │ ├── nist80053r4.parameters.json │ │ ├── nist80053r5.bicep │ │ ├── nist80053r5.parameters.json │ │ ├── pbmm.bicep │ │ └── pbmm.parameters.json └── custom │ ├── assignments │ ├── AKS.bicep │ ├── AKS.parameters.json │ ├── DDoS.bicep │ ├── DDoS.parameters.json │ ├── DNSPrivateEndpoints.bicep │ ├── DNSPrivateEndpoints.parameters.json │ ├── DefenderForCloud.bicep │ ├── DefenderForCloud.parameters.json │ ├── LogAnalytics.bicep │ ├── LogAnalytics.parameters.json │ ├── Network.bicep │ ├── Network.parameters.json │ ├── Tags.bicep │ └── Tags.parameters.json │ └── definitions │ ├── policy │ ├── Block-AzureBastionHosts │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── DNS-PE-BlockPrivateDNSZones-PrivateLinks │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.AnalysisServices-servers │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.ApiManagement-service │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Automation-automationAccounts │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.AzureRecoveryVault-Backup │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.AzureRecoveryVault-SiteRecovery │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Cache-Redis │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Cdn-profiles-endpoints │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Cdn-profiles-frontdoor │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.CognitiveServices-accounts-CognitiveServices │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.ContainerRegistry-registries │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.DBForMariaDB-servers │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.DBforMySQL-servers │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.DBforPostgreSQL-servers │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.DataFactory-factories │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Databricks-workspaces │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Devices-IotHubs │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.DocumentDB-databaseAccounts │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.EventGrid-systemTopics │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.EventGrid-topics │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.EventHub-namespaces │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.HealthcareApis-services-fhir-R4 │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.HealthcareApis-services-fhir-STU3 │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Kusto-clusters │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.MachineLearningServices-workspaces │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Media-mediaservices │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Network-applicationGateways │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Network-azureFirewalls │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Network-bastionHosts │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Network-expressRouteCircuits │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Network-loadBalancers │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Network-networkSecurityGroups │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Network-trafficmanagerprofiles │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Network-virtualNetworkGateways │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Network-virtualNetworks │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.OperationalInsights-workspaces │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Relay-namespaces │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Resources-Subscriptions │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.SignalRService-SignalR │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Sql-managedInstances │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Sql-servers-databases │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Synapse-workspaces │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Web-sites-app │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── LA-Microsoft.Web-sites-functionapp │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── Microsoft.TimeSeriesInsights-environments-Gen2 │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── Network-Audit-Missing-UDR │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ ├── Network-Deploy-DDoS-Standard │ │ ├── azurepolicy.config.json │ │ ├── azurepolicy.parameters.json │ │ └── azurepolicy.rules.json │ └── readme.md │ └── policyset │ ├── AKS.bicep │ ├── AKS.parameters.json │ ├── DNSPrivateEndpoints.bicep │ ├── DNSPrivateEndpoints.parameters.json │ ├── DefenderForCloud.bicep │ ├── DefenderForCloud.parameters.json │ ├── LogAnalytics.bicep │ ├── LogAnalytics.parameters.json │ ├── Network.bicep │ ├── Network.parameters.json │ ├── Tags.bicep │ ├── Tags.parameters.json │ └── templates │ ├── DNS-PrivateEndpoints │ └── azurepolicy.json │ ├── Tags-Audit-Missing-Tag-Resource │ └── azurepolicy.json │ ├── Tags-Inherit-Tag-From-ResourceGroup │ └── azurepolicy.json │ ├── Tags-Inherit-Tag-From-Subscription-To-ResourceGroup │ └── azurepolicy.json │ └── Tags-Require-Tag-ResourceGroup │ └── azurepolicy.json ├── roles ├── la-vminsights-readonly.bicep ├── lz-appowner.bicep ├── lz-netops.bicep ├── lz-secops.bicep └── lz-subowner.bicep ├── schemas ├── latest │ ├── landingzones │ │ ├── lz-generic-subscription.json │ │ ├── lz-healthcare.json │ │ ├── lz-machinelearning.json │ │ ├── lz-platform-connectivity-hub-azfw-policy.json │ │ ├── lz-platform-connectivity-hub-azfw.json │ │ ├── lz-platform-connectivity-hub-nva.json │ │ ├── lz-platform-identity.json │ │ ├── lz-platform-logging.json │ │ └── types │ │ │ ├── aks.json │ │ │ ├── aml.json │ │ │ ├── appServiceLinuxContainer.json │ │ │ ├── automation.json │ │ │ ├── backupRecoveryVault.json │ │ │ ├── hubNetwork.json │ │ │ ├── keyVault.json │ │ │ ├── location.json │ │ │ ├── logAnalyticsWorkspaceId.json │ │ │ ├── resourceTags.json │ │ │ ├── securityCenter.json │ │ │ ├── serviceHealthAlerts.json │ │ │ ├── sqldb.json │ │ │ ├── sqlmi.json │ │ │ ├── subscriptionBudget.json │ │ │ ├── subscriptionRoleAssignments.json │ │ │ ├── subscriptionTags.json │ │ │ └── synapse.json │ └── readme.md ├── v0.1.0 │ └── landingzones │ │ ├── lz-generic-subscription.json │ │ ├── lz-healthcare.json │ │ ├── lz-machinelearning.json │ │ └── types │ │ ├── aks.json │ │ ├── aml.json │ │ ├── automation.json │ │ ├── hubNetwork.json │ │ ├── keyVault.json │ │ ├── resourceTags.json │ │ ├── securityCenter.json │ │ ├── serviceHealthAlerts.json │ │ ├── sqldb.json │ │ ├── sqlmi.json │ │ ├── subscriptionBudget.json │ │ ├── subscriptionRoleAssignments.json │ │ ├── subscriptionTags.json │ │ └── synapse.json ├── v0.2.0 │ ├── landingzones │ │ ├── lz-generic-subscription.json │ │ ├── lz-healthcare.json │ │ ├── lz-machinelearning.json │ │ └── types │ │ │ ├── aks.json │ │ │ ├── aml.json │ │ │ ├── automation.json │ │ │ ├── backupRecoveryVault.json │ │ │ ├── hubNetwork.json │ │ │ ├── keyVault.json │ │ │ ├── resourceTags.json │ │ │ ├── securityCenter.json │ │ │ ├── serviceHealthAlerts.json │ │ │ ├── sqldb.json │ │ │ ├── sqlmi.json │ │ │ ├── subscriptionBudget.json │ │ │ ├── subscriptionRoleAssignments.json │ │ │ ├── subscriptionTags.json │ │ │ └── synapse.json │ └── readme.md ├── v0.3.0 │ ├── landingzones │ │ ├── lz-generic-subscription.json │ │ ├── lz-healthcare.json │ │ ├── lz-machinelearning.json │ │ └── types │ │ │ ├── aks.json │ │ │ ├── aml.json │ │ │ ├── appServiceLinuxContainer.json │ │ │ ├── automation.json │ │ │ ├── backupRecoveryVault.json │ │ │ ├── hubNetwork.json │ │ │ ├── keyVault.json │ │ │ ├── resourceTags.json │ │ │ ├── securityCenter.json │ │ │ ├── serviceHealthAlerts.json │ │ │ ├── sqldb.json │ │ │ ├── sqlmi.json │ │ │ ├── subscriptionBudget.json │ │ │ ├── subscriptionRoleAssignments.json │ │ │ ├── subscriptionTags.json │ │ │ └── synapse.json │ └── readme.md ├── v0.4.0 │ ├── landingzones │ │ ├── lz-generic-subscription.json │ │ ├── lz-healthcare.json │ │ ├── lz-machinelearning.json │ │ └── types │ │ │ ├── aks.json │ │ │ ├── aml.json │ │ │ ├── appServiceLinuxContainer.json │ │ │ ├── automation.json │ │ │ ├── backupRecoveryVault.json │ │ │ ├── hubNetwork.json │ │ │ ├── keyVault.json │ │ │ ├── location.json │ │ │ ├── resourceTags.json │ │ │ ├── securityCenter.json │ │ │ ├── serviceHealthAlerts.json │ │ │ ├── sqldb.json │ │ │ ├── sqlmi.json │ │ │ ├── subscriptionBudget.json │ │ │ ├── subscriptionRoleAssignments.json │ │ │ ├── subscriptionTags.json │ │ │ └── synapse.json │ └── readme.md ├── v0.5.0 │ ├── landingzones │ │ ├── lz-generic-subscription.json │ │ ├── lz-healthcare.json │ │ ├── lz-machinelearning.json │ │ ├── lz-platform-connectivity-hub-azfw-policy.json │ │ ├── lz-platform-connectivity-hub-azfw.json │ │ ├── lz-platform-connectivity-hub-nva.json │ │ ├── lz-platform-logging.json │ │ └── types │ │ │ ├── aks.json │ │ │ ├── aml.json │ │ │ ├── appServiceLinuxContainer.json │ │ │ ├── automation.json │ │ │ ├── backupRecoveryVault.json │ │ │ ├── hubNetwork.json │ │ │ ├── keyVault.json │ │ │ ├── location.json │ │ │ ├── logAnalyticsWorkspaceId.json │ │ │ ├── resourceTags.json │ │ │ ├── securityCenter.json │ │ │ ├── serviceHealthAlerts.json │ │ │ ├── sqldb.json │ │ │ ├── sqlmi.json │ │ │ ├── subscriptionBudget.json │ │ │ ├── subscriptionRoleAssignments.json │ │ │ ├── subscriptionTags.json │ │ │ └── synapse.json │ └── readme.md └── v0.6.0 │ ├── landingzones │ ├── lz-generic-subscription.json │ ├── lz-healthcare.json │ ├── lz-machinelearning.json │ ├── lz-platform-connectivity-hub-azfw-policy.json │ ├── lz-platform-connectivity-hub-azfw.json │ ├── lz-platform-connectivity-hub-nva.json │ ├── lz-platform-logging.json │ └── types │ │ ├── aks.json │ │ ├── aml.json │ │ ├── appServiceLinuxContainer.json │ │ ├── automation.json │ │ ├── backupRecoveryVault.json │ │ ├── hubNetwork.json │ │ ├── keyVault.json │ │ ├── location.json │ │ ├── logAnalyticsWorkspaceId.json │ │ ├── resourceTags.json │ │ ├── securityCenter.json │ │ ├── serviceHealthAlerts.json │ │ ├── sqldb.json │ │ ├── sqlmi.json │ │ ├── subscriptionBudget.json │ │ ├── subscriptionRoleAssignments.json │ │ ├── subscriptionTags.json │ │ └── synapse.json │ └── readme.md ├── scripts ├── configuration │ ├── Connect-AlzCredential.ps1 │ ├── Get-AlzConfiguration.ps1 │ ├── Get-AlzSubscriptions.ps1 │ ├── Install-Prerequisites.ps1 │ ├── New-AlzConfiguration.ps1 │ ├── New-AlzCredential.ps1 │ ├── New-AlzDeployment.ps1 │ ├── Remove-AlzConfiguration.ps1 │ ├── Remove-AlzCredential.ps1 │ └── Test-AlzCredential.ps1 ├── deployments │ ├── Functions │ │ ├── EnvironmentContext.ps1 │ │ ├── HubNetworkWithAzureFirewall.ps1 │ │ ├── HubNetworkWithNVA.ps1 │ │ ├── Identity.ps1 │ │ ├── Logging.ps1 │ │ ├── ManagementGroups.ps1 │ │ ├── Policy.ps1 │ │ ├── Roles.ps1 │ │ └── Subscriptions.ps1 │ ├── Install-Prerequisites.ps1 │ └── RunWorkflows.ps1 └── onboarding │ ├── .gitignore │ ├── add-root-user-access-admin.bat │ ├── create-pipelines.bat │ ├── create-security-group.bat │ ├── create-service-endpoint.bat │ ├── create-service-principal.bat │ ├── create-variable-group.bat │ ├── delete-management-groups.bat │ ├── delete-pipelines.bat │ ├── delete-service-endpoint.bat │ ├── delete-service-principal.bat │ ├── list-management-groups.bat │ ├── list-root-user-access-admin.bat │ ├── list-variables.bat │ ├── remove-root-user-access-admin.bat │ ├── run-pipelines.bat │ ├── service-endpoint.template.json │ ├── set-variables.CanadaPubSecALZ.bat │ ├── set-variables.DevOpsOrgName.bat │ ├── set-variables.ocag148outlook.bat │ ├── share-service-endpoint.bat │ ├── unset-variables.bat │ ├── update-variable-group.bat │ ├── whereami-azure.bat │ └── whoami-azure.bat └── tests ├── landingzones ├── lz-healthcare │ ├── deployment-tests │ │ ├── main.bicep │ │ └── test-runner.bicep │ └── e2e-flow-tests │ │ ├── aml-terminal-acr.sh │ │ ├── aml_key_vault_test.py │ │ ├── databricks_integration_tests.py │ │ ├── synapse-spark.py │ │ ├── synapse-sql-dw.sql │ │ └── synapse-sql-serverless.sql └── lz-machinelearning │ ├── deployment-tests │ ├── app-service-vnet.bicep │ ├── app-service.bicep │ ├── main.bicep │ └── test-runner.bicep │ └── e2e-flow-tests │ ├── aml-terminal-acr.sh │ ├── aml_sql_key_vault_test.py │ ├── azureml-deployment-scripts │ └── echo_score.py │ ├── databricks_integration_tests.py │ ├── deploy-to-app-service.sh │ ├── hello-world_deploy.py │ └── hello-world_model_package.py ├── schemas ├── lz-generic-subscription │ ├── BackupRecoveryVaultIsFalse.json │ ├── BackupRecoveryVaultIsTrue.json │ ├── BudgetIsFalse.json │ ├── BudgetIsTrue.json │ ├── EmptyResourceTags.json │ ├── EmptySubscriptionTags.json │ ├── FullDeployment-With-Hub.json │ ├── FullDeployment-With-Location.json │ ├── FullDeployment-Without-Hub.json │ ├── WithoutCustomDNS.json │ └── WithoutSubnets.json ├── lz-healthcare │ ├── BudgetIsFalse.json │ ├── BudgetIsTrue.json │ ├── EmptyResourceTags.json │ ├── EmptySubscriptionTags.json │ ├── FullDeployment-With-Hub.json │ ├── FullDeployment-With-Location.json │ ├── FullDeployment-With-OptionalSubnets.json │ ├── FullDeployment-Without-Hub.json │ ├── SQLDB-aadAuthOnly.json │ ├── SQLDB-mixedAuth.json │ ├── SQLDB-sqlAuth.json │ ├── SQLDBIsFalse.json │ ├── Synapse-aadAuthOnly.json │ ├── Synapse-mixedAuth.json │ ├── Synapse-sqlAuth.json │ └── WithoutCMK.json ├── lz-machinelearning │ ├── AKS-AzureCNI-AzureNP.json │ ├── AKS-AzureCNI-Calico.json │ ├── AKS-Kubenet-Calico.json │ ├── AKSIsFalse.json │ ├── AppServiceLinuxContainerIsFalse.json │ ├── AppServiceLinuxContainerPrivateEndpointIsFalse.json │ ├── BudgetIsFalse.json │ ├── BudgetIsTrue.json │ ├── EmptyResourceTags.json │ ├── EmptySubscriptionTags.json │ ├── FullDeployment-With-Hub.json │ ├── FullDeployment-With-Location.json │ ├── FullDeployment-With-OptionalSubnets.json │ ├── FullDeployment-Without-Hub.json │ ├── SQLDB-aadAuthOnly.json │ ├── SQLDB-mixedAuth.json │ ├── SQLDB-sqlAuth.json │ ├── SQLDBIsFalse.json │ ├── SQLMIIsFalse.json │ └── WithoutCMK.json ├── lz-platform-connectivity-hub-azfw-policy │ └── FullDeployment.json ├── lz-platform-connectivity-hub-azfw │ ├── BudgetIsFalse.json │ ├── FullDeployment-With-OptionalHubSubnets.json │ ├── FullDeployment-WithAzureFirewallPolicy.json │ ├── FullDeployment-WithLogAnalyticsWorkspace.json │ ├── FullDeployment-Without-ManagementRestrictedZone.json │ └── FullDeployment.json ├── lz-platform-connectivity-hub-nva │ ├── BudgetIsFalse.json │ ├── FullDeployment-With-FortigateBYOL.json │ ├── FullDeployment-With-OptionalHubSubnets.json │ ├── FullDeployment-With-Ubuntu.json │ └── FullDeployment-WithLogAnalyticsWorkspace.json ├── lz-platform-identity │ ├── lz-Identity-With-DNS-Resolver.json │ ├── lz-Identity-With-Private-DNS-Zones-And-DNS-Resolver.json │ ├── lz-Identity-With-Private-DNS-Zones.json │ └── lz-Identity-Without-DNS-Resolver.json ├── lz-platform-logging │ ├── BudgetIsFalse.json │ ├── EmptyResourceTags.json │ ├── EmptySubscriptionTags.json │ ├── FullDeployment-With-Location.json │ ├── FullDeployment.json │ └── WithoutSubscriptionRoleAssignments.json ├── run-tests.sh ├── test-all.ps1 └── validate-deployment-config.ps1 └── utils └── build-all-biceps.sh /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/0-everything.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.github/workflows/0-everything.yml -------------------------------------------------------------------------------- /.github/workflows/1-management-groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.github/workflows/1-management-groups.yml -------------------------------------------------------------------------------- /.github/workflows/2-roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.github/workflows/2-roles.yml -------------------------------------------------------------------------------- /.github/workflows/3-logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.github/workflows/3-logging.yml -------------------------------------------------------------------------------- /.github/workflows/4-policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.github/workflows/4-policy.yml -------------------------------------------------------------------------------- /.github/workflows/5-azure-firewall-policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.github/workflows/5-azure-firewall-policy.yml -------------------------------------------------------------------------------- /.github/workflows/5-hub-network-with-azure-firewall.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.github/workflows/5-hub-network-with-azure-firewall.yml -------------------------------------------------------------------------------- /.github/workflows/5-hub-network-with-nva.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.github/workflows/5-hub-network-with-nva.yml -------------------------------------------------------------------------------- /.github/workflows/6-identity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.github/workflows/6-identity.yml -------------------------------------------------------------------------------- /.github/workflows/7-subscriptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.github/workflows/7-subscriptions.yml -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/consistency-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.github/workflows/consistency-check.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.github/workflows/pull-request-check.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.gitignore -------------------------------------------------------------------------------- /.pipelines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/README.md -------------------------------------------------------------------------------- /.pipelines/demo-approval.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/demo-approval.yml -------------------------------------------------------------------------------- /.pipelines/linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/linters.yml -------------------------------------------------------------------------------- /.pipelines/management-groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/management-groups.yml -------------------------------------------------------------------------------- /.pipelines/platform-connectivity-hub-azfw-policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/platform-connectivity-hub-azfw-policy.yml -------------------------------------------------------------------------------- /.pipelines/platform-connectivity-hub-azfw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/platform-connectivity-hub-azfw.yml -------------------------------------------------------------------------------- /.pipelines/platform-connectivity-hub-nva.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/platform-connectivity-hub-nva.yml -------------------------------------------------------------------------------- /.pipelines/platform-identity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/platform-identity.yml -------------------------------------------------------------------------------- /.pipelines/platform-logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/platform-logging.yml -------------------------------------------------------------------------------- /.pipelines/policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/policy.yml -------------------------------------------------------------------------------- /.pipelines/pull-request-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/pull-request-check.yml -------------------------------------------------------------------------------- /.pipelines/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/roles.yml -------------------------------------------------------------------------------- /.pipelines/subscriptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/subscriptions.yml -------------------------------------------------------------------------------- /.pipelines/templates/jobs/deploy-subscription.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/jobs/deploy-subscription.yml -------------------------------------------------------------------------------- /.pipelines/templates/jobs/trigger-subscriptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/jobs/trigger-subscriptions.yml -------------------------------------------------------------------------------- /.pipelines/templates/steps/assign-policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/steps/assign-policy.yml -------------------------------------------------------------------------------- /.pipelines/templates/steps/config-subscription.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/steps/config-subscription.yml -------------------------------------------------------------------------------- /.pipelines/templates/steps/create-roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/steps/create-roles.yml -------------------------------------------------------------------------------- /.pipelines/templates/steps/define-policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/steps/define-policy.yml -------------------------------------------------------------------------------- /.pipelines/templates/steps/define-policyset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/steps/define-policyset.yml -------------------------------------------------------------------------------- /.pipelines/templates/steps/deploy-management-groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/steps/deploy-management-groups.yml -------------------------------------------------------------------------------- /.pipelines/templates/steps/deploy-platform-connectivity-hub-azfw-policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/steps/deploy-platform-connectivity-hub-azfw-policy.yml -------------------------------------------------------------------------------- /.pipelines/templates/steps/deploy-platform-connectivity-hub-azfw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/steps/deploy-platform-connectivity-hub-azfw.yml -------------------------------------------------------------------------------- /.pipelines/templates/steps/deploy-platform-connectivity-hub-nva.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/steps/deploy-platform-connectivity-hub-nva.yml -------------------------------------------------------------------------------- /.pipelines/templates/steps/deploy-platform-identity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/steps/deploy-platform-identity.yml -------------------------------------------------------------------------------- /.pipelines/templates/steps/deploy-platform-logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/steps/deploy-platform-logging.yml -------------------------------------------------------------------------------- /.pipelines/templates/steps/deploy-subscription.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/steps/deploy-subscription.yml -------------------------------------------------------------------------------- /.pipelines/templates/steps/load-log-analytics-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/steps/load-log-analytics-vars.yml -------------------------------------------------------------------------------- /.pipelines/templates/steps/load-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/steps/load-variables.yml -------------------------------------------------------------------------------- /.pipelines/templates/steps/move-subscription.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/steps/move-subscription.yml -------------------------------------------------------------------------------- /.pipelines/templates/steps/run-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/steps/run-linter.yml -------------------------------------------------------------------------------- /.pipelines/templates/steps/show-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/.pipelines/templates/steps/show-variables.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /azresources/analytics/adf/adf-with-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/analytics/adf/adf-with-cmk.bicep -------------------------------------------------------------------------------- /azresources/analytics/adf/adf-without-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/analytics/adf/adf-without-cmk.bicep -------------------------------------------------------------------------------- /azresources/analytics/adf/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/analytics/adf/main.bicep -------------------------------------------------------------------------------- /azresources/analytics/aml/aml-with-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/analytics/aml/aml-with-cmk.bicep -------------------------------------------------------------------------------- /azresources/analytics/aml/aml-without-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/analytics/aml/aml-without-cmk.bicep -------------------------------------------------------------------------------- /azresources/analytics/aml/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/analytics/aml/main.bicep -------------------------------------------------------------------------------- /azresources/analytics/databricks/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/analytics/databricks/main.bicep -------------------------------------------------------------------------------- /azresources/analytics/stream-analytics/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/analytics/stream-analytics/main.bicep -------------------------------------------------------------------------------- /azresources/analytics/synapse/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/analytics/synapse/main.bicep -------------------------------------------------------------------------------- /azresources/analytics/synapse/synapse-with-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/analytics/synapse/synapse-with-cmk.bicep -------------------------------------------------------------------------------- /azresources/analytics/synapse/synapse-without-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/analytics/synapse/synapse-without-cmk.bicep -------------------------------------------------------------------------------- /azresources/automation/automation-account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/automation/automation-account.bicep -------------------------------------------------------------------------------- /azresources/compute/fhir.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/compute/fhir.bicep -------------------------------------------------------------------------------- /azresources/compute/vm-ubuntu1804/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/compute/vm-ubuntu1804/main.bicep -------------------------------------------------------------------------------- /azresources/compute/vm-ubuntu1804/vm-ubuntu1804-with-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/compute/vm-ubuntu1804/vm-ubuntu1804-with-cmk.bicep -------------------------------------------------------------------------------- /azresources/compute/vm-ubuntu1804/vm-ubuntu1804-without-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/compute/vm-ubuntu1804/vm-ubuntu1804-without-cmk.bicep -------------------------------------------------------------------------------- /azresources/compute/vm-win2019/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/compute/vm-win2019/main.bicep -------------------------------------------------------------------------------- /azresources/compute/vm-win2019/vm-win2019-with-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/compute/vm-win2019/vm-win2019-with-cmk.bicep -------------------------------------------------------------------------------- /azresources/compute/vm-win2019/vm-win2019-without-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/compute/vm-win2019/vm-win2019-without-cmk.bicep -------------------------------------------------------------------------------- /azresources/compute/web/app-service-plan-linux.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/compute/web/app-service-plan-linux.bicep -------------------------------------------------------------------------------- /azresources/compute/web/appservice-linux-container.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/compute/web/appservice-linux-container.bicep -------------------------------------------------------------------------------- /azresources/compute/web/appservice-linux.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/compute/web/appservice-linux.bicep -------------------------------------------------------------------------------- /azresources/compute/web/functions-python-linux.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/compute/web/functions-python-linux.bicep -------------------------------------------------------------------------------- /azresources/containers/acr/acr-with-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/containers/acr/acr-with-cmk.bicep -------------------------------------------------------------------------------- /azresources/containers/acr/acr-without-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/containers/acr/acr-without-cmk.bicep -------------------------------------------------------------------------------- /azresources/containers/acr/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/containers/acr/main.bicep -------------------------------------------------------------------------------- /azresources/containers/aks/aks-with-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/containers/aks/aks-with-cmk.bicep -------------------------------------------------------------------------------- /azresources/containers/aks/aks-without-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/containers/aks/aks-without-cmk.bicep -------------------------------------------------------------------------------- /azresources/containers/aks/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/containers/aks/main.bicep -------------------------------------------------------------------------------- /azresources/cost/budget-subscription.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/cost/budget-subscription.bicep -------------------------------------------------------------------------------- /azresources/data/sqldb/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/data/sqldb/main.bicep -------------------------------------------------------------------------------- /azresources/data/sqldb/sqldb-with-cmk-enable-tde.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/data/sqldb/sqldb-with-cmk-enable-tde.bicep -------------------------------------------------------------------------------- /azresources/data/sqldb/sqldb-with-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/data/sqldb/sqldb-with-cmk.bicep -------------------------------------------------------------------------------- /azresources/data/sqldb/sqldb-without-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/data/sqldb/sqldb-without-cmk.bicep -------------------------------------------------------------------------------- /azresources/data/sqlmi/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/data/sqlmi/main.bicep -------------------------------------------------------------------------------- /azresources/data/sqlmi/sqlmi-with-cmk-enable-tde.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/data/sqlmi/sqlmi-with-cmk-enable-tde.bicep -------------------------------------------------------------------------------- /azresources/data/sqlmi/sqlmi-with-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/data/sqlmi/sqlmi-with-cmk.bicep -------------------------------------------------------------------------------- /azresources/data/sqlmi/sqlmi-without-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/data/sqlmi/sqlmi-without-cmk.bicep -------------------------------------------------------------------------------- /azresources/iam/resource/key-vault-role-assignment-to-sp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/iam/resource/key-vault-role-assignment-to-sp.bicep -------------------------------------------------------------------------------- /azresources/iam/resource/private-dns-zone-role-assignment-to-sp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/iam/resource/private-dns-zone-role-assignment-to-sp.bicep -------------------------------------------------------------------------------- /azresources/iam/resource/route-table-role-assignment-to-sp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/iam/resource/route-table-role-assignment-to-sp.bicep -------------------------------------------------------------------------------- /azresources/iam/resource/storage-role-assignment-to-sp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/iam/resource/storage-role-assignment-to-sp.bicep -------------------------------------------------------------------------------- /azresources/iam/resource/virtual-network-role-assignment-to-sp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/iam/resource/virtual-network-role-assignment-to-sp.bicep -------------------------------------------------------------------------------- /azresources/iam/resourceGroup/role-assignment-to-sp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/iam/resourceGroup/role-assignment-to-sp.bicep -------------------------------------------------------------------------------- /azresources/iam/subscription/role-assignment-to-group.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/iam/subscription/role-assignment-to-group.bicep -------------------------------------------------------------------------------- /azresources/iam/subscription/role-assignment-to-sp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/iam/subscription/role-assignment-to-sp.bicep -------------------------------------------------------------------------------- /azresources/iam/user-assigned-identity.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/iam/user-assigned-identity.bicep -------------------------------------------------------------------------------- /azresources/integration/eventhub.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/integration/eventhub.bicep -------------------------------------------------------------------------------- /azresources/management/backup-recovery-vault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/management/backup-recovery-vault.bicep -------------------------------------------------------------------------------- /azresources/monitor/ai-web.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/monitor/ai-web.bicep -------------------------------------------------------------------------------- /azresources/monitor/dcr-azure-monitor-logs.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/monitor/dcr-azure-monitor-logs.bicep -------------------------------------------------------------------------------- /azresources/monitor/log-analytics.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/monitor/log-analytics.bicep -------------------------------------------------------------------------------- /azresources/network/app-gateway-v2-waf.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/app-gateway-v2-waf.bicep -------------------------------------------------------------------------------- /azresources/network/bastion.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/bastion.bicep -------------------------------------------------------------------------------- /azresources/network/ddos-standard.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/ddos-standard.bicep -------------------------------------------------------------------------------- /azresources/network/dns-forwarding-ruleset.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/dns-forwarding-ruleset.bicep -------------------------------------------------------------------------------- /azresources/network/dnsresolver-vnet-link.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/dnsresolver-vnet-link.bicep -------------------------------------------------------------------------------- /azresources/network/dnsresolver.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/dnsresolver.bicep -------------------------------------------------------------------------------- /azresources/network/firewall.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/firewall.bicep -------------------------------------------------------------------------------- /azresources/network/lb-egress.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/lb-egress.bicep -------------------------------------------------------------------------------- /azresources/network/nsg/nsg-allowall.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/nsg/nsg-allowall.bicep -------------------------------------------------------------------------------- /azresources/network/nsg/nsg-appgwv2.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/nsg/nsg-appgwv2.bicep -------------------------------------------------------------------------------- /azresources/network/nsg/nsg-bastion.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/nsg/nsg-bastion.bicep -------------------------------------------------------------------------------- /azresources/network/nsg/nsg-databricks.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/nsg/nsg-databricks.bicep -------------------------------------------------------------------------------- /azresources/network/nsg/nsg-empty.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/nsg/nsg-empty.bicep -------------------------------------------------------------------------------- /azresources/network/nsg/nsg-sqlmi.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/nsg/nsg-sqlmi.bicep -------------------------------------------------------------------------------- /azresources/network/private-dns-zone-privatelinks.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/private-dns-zone-privatelinks.bicep -------------------------------------------------------------------------------- /azresources/network/private-dns-zone-virtual-network-link.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/private-dns-zone-virtual-network-link.bicep -------------------------------------------------------------------------------- /azresources/network/private-dns-zone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/private-dns-zone.bicep -------------------------------------------------------------------------------- /azresources/network/udr/udr-custom.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/udr/udr-custom.bicep -------------------------------------------------------------------------------- /azresources/network/udr/udr-databricks-private.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/udr/udr-databricks-private.bicep -------------------------------------------------------------------------------- /azresources/network/udr/udr-databricks-public.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/udr/udr-databricks-public.bicep -------------------------------------------------------------------------------- /azresources/network/udr/udr-sqlmi.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/udr/udr-sqlmi.bicep -------------------------------------------------------------------------------- /azresources/network/vnet-peering.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/network/vnet-peering.bicep -------------------------------------------------------------------------------- /azresources/security-center/asc.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/security-center/asc.bicep -------------------------------------------------------------------------------- /azresources/security/key-vault-key-rsa2048.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/security/key-vault-key-rsa2048.bicep -------------------------------------------------------------------------------- /azresources/security/key-vault-secret.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/security/key-vault-secret.bicep -------------------------------------------------------------------------------- /azresources/security/key-vault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/security/key-vault.bicep -------------------------------------------------------------------------------- /azresources/service-health/service-health-caller-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/service-health/service-health-caller-params.json -------------------------------------------------------------------------------- /azresources/service-health/service-health-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/service-health/service-health-params.json -------------------------------------------------------------------------------- /azresources/service-health/service-health.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/service-health/service-health.bicep -------------------------------------------------------------------------------- /azresources/storage/storage-adlsgen2-fs.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/storage/storage-adlsgen2-fs.bicep -------------------------------------------------------------------------------- /azresources/storage/storage-adlsgen2.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/storage/storage-adlsgen2.bicep -------------------------------------------------------------------------------- /azresources/storage/storage-enable-cmk.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/storage/storage-enable-cmk.bicep -------------------------------------------------------------------------------- /azresources/storage/storage-generalpurpose.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/storage/storage-generalpurpose.bicep -------------------------------------------------------------------------------- /azresources/telemetry/customer-usage-attribution-management-group.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/telemetry/customer-usage-attribution-management-group.bicep -------------------------------------------------------------------------------- /azresources/telemetry/customer-usage-attribution-resource-group.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/telemetry/customer-usage-attribution-resource-group.bicep -------------------------------------------------------------------------------- /azresources/telemetry/customer-usage-attribution-subscription.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/telemetry/customer-usage-attribution-subscription.bicep -------------------------------------------------------------------------------- /azresources/telemetry/customer-usage-attribution-tenant.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/telemetry/customer-usage-attribution-tenant.bicep -------------------------------------------------------------------------------- /azresources/util/delete-lock.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/util/delete-lock.bicep -------------------------------------------------------------------------------- /azresources/util/deployment-script.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/util/deployment-script.bicep -------------------------------------------------------------------------------- /azresources/util/wait-on-arm-subscription.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/util/wait-on-arm-subscription.bicep -------------------------------------------------------------------------------- /azresources/util/wait-on-arm.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/util/wait-on-arm.bicep -------------------------------------------------------------------------------- /azresources/util/wait-subscription.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/util/wait-subscription.bicep -------------------------------------------------------------------------------- /azresources/util/wait.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/azresources/util/wait.bicep -------------------------------------------------------------------------------- /bicepconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/bicepconfig.json -------------------------------------------------------------------------------- /config/identity/CanadaPubSecALZ-main/identity.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/identity/CanadaPubSecALZ-main/identity.parameters.json -------------------------------------------------------------------------------- /config/linters/.ansible-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.ansible-lint.yml -------------------------------------------------------------------------------- /config/linters/.cfnlintrc.yml: -------------------------------------------------------------------------------- 1 | include_checks: 2 | - I 3 | -------------------------------------------------------------------------------- /config/linters/.chktexrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.chktexrc -------------------------------------------------------------------------------- /config/linters/.clj-kondo/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.clj-kondo/config.edn -------------------------------------------------------------------------------- /config/linters/.coffee-lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.coffee-lint.json -------------------------------------------------------------------------------- /config/linters/.ecrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.ecrc -------------------------------------------------------------------------------- /config/linters/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.eslintrc.yml -------------------------------------------------------------------------------- /config/linters/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | -------------------------------------------------------------------------------- /config/linters/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.golangci.yml -------------------------------------------------------------------------------- /config/linters/.groovylintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.groovylintrc.json -------------------------------------------------------------------------------- /config/linters/.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.hadolint.yaml -------------------------------------------------------------------------------- /config/linters/.htmlhintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.htmlhintrc -------------------------------------------------------------------------------- /config/linters/.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.lintr -------------------------------------------------------------------------------- /config/linters/.luacheckrc: -------------------------------------------------------------------------------- 1 | --std max 2 | -------------------------------------------------------------------------------- /config/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.markdown-lint.yml -------------------------------------------------------------------------------- /config/linters/.openapirc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.openapirc.yml -------------------------------------------------------------------------------- /config/linters/.perlcriticrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.perlcriticrc -------------------------------------------------------------------------------- /config/linters/.protolintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.protolintrc.yml -------------------------------------------------------------------------------- /config/linters/.python-black: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/linters/.python-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.python-lint -------------------------------------------------------------------------------- /config/linters/.ruby-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.ruby-lint.yml -------------------------------------------------------------------------------- /config/linters/.snakefmt.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/linters/.sql-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.sql-config.json -------------------------------------------------------------------------------- /config/linters/.stylelintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "stylelint-config-standard" 3 | } 4 | -------------------------------------------------------------------------------- /config/linters/.yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/.yaml-lint.yml -------------------------------------------------------------------------------- /config/linters/analysis_options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/analysis_options.yml -------------------------------------------------------------------------------- /config/linters/sun_checks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/linters/sun_checks.xml -------------------------------------------------------------------------------- /config/logging/CanadaPubSecALZ-main/logging.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/logging/CanadaPubSecALZ-main/logging.parameters.json -------------------------------------------------------------------------------- /config/networking/CanadaPubSecALZ-main/hub-azfw-policy/azure-firewall-policy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/networking/CanadaPubSecALZ-main/hub-azfw-policy/azure-firewall-policy.parameters.json -------------------------------------------------------------------------------- /config/networking/CanadaPubSecALZ-main/hub-azfw/hub-network.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/networking/CanadaPubSecALZ-main/hub-azfw/hub-network.parameters.json -------------------------------------------------------------------------------- /config/networking/CanadaPubSecALZ-main/hub-nva/hub-network.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/networking/CanadaPubSecALZ-main/hub-nva/hub-network.parameters.json -------------------------------------------------------------------------------- /config/subscriptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/subscriptions/README.md -------------------------------------------------------------------------------- /config/telemetry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/telemetry.json -------------------------------------------------------------------------------- /config/variables/CanadaPubSecALZ-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/variables/CanadaPubSecALZ-main.yml -------------------------------------------------------------------------------- /config/variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/variables/README.md -------------------------------------------------------------------------------- /config/variables/common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/config/variables/common.yml -------------------------------------------------------------------------------- /docs/archetypes/authoring-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/archetypes/authoring-guide.md -------------------------------------------------------------------------------- /docs/archetypes/generic-subscription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/archetypes/generic-subscription.md -------------------------------------------------------------------------------- /docs/archetypes/healthcare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/archetypes/healthcare.md -------------------------------------------------------------------------------- /docs/archetypes/hubnetwork-azfw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/archetypes/hubnetwork-azfw.md -------------------------------------------------------------------------------- /docs/archetypes/hubnetwork-nva-fortigate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/archetypes/hubnetwork-nva-fortigate.md -------------------------------------------------------------------------------- /docs/archetypes/identity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/archetypes/identity.md -------------------------------------------------------------------------------- /docs/archetypes/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/archetypes/logging.md -------------------------------------------------------------------------------- /docs/archetypes/machinelearning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/archetypes/machinelearning.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/gc-30-day-cloud-guardrails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/gc-30-day-cloud-guardrails.md -------------------------------------------------------------------------------- /docs/media/archetypes/egressvirtualApplianceIP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/archetypes/egressvirtualApplianceIP.jpg -------------------------------------------------------------------------------- /docs/media/archetypes/resource-tags-and-naming-conventions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/archetypes/resource-tags-and-naming-conventions.jpg -------------------------------------------------------------------------------- /docs/media/archetypes/security-center-contact-info.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/archetypes/security-center-contact-info.jpg -------------------------------------------------------------------------------- /docs/media/archetypes/service-health-alerts-receivers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/archetypes/service-health-alerts-receivers.jpg -------------------------------------------------------------------------------- /docs/media/archetypes/subscription-role-assignments.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/archetypes/subscription-role-assignments.jpg -------------------------------------------------------------------------------- /docs/media/archetypes/virtual-network-id.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/archetypes/virtual-network-id.jpg -------------------------------------------------------------------------------- /docs/media/architecture/ado-approvals-checks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/ado-approvals-checks.jpg -------------------------------------------------------------------------------- /docs/media/architecture/ado-pipelines.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/ado-pipelines.jpg -------------------------------------------------------------------------------- /docs/media/architecture/archetype-generic-subscription.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/archetype-generic-subscription.jpg -------------------------------------------------------------------------------- /docs/media/architecture/archetype-healthcare-dataflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/archetype-healthcare-dataflow.jpg -------------------------------------------------------------------------------- /docs/media/architecture/archetype-healthcare-networking.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/archetype-healthcare-networking.jpg -------------------------------------------------------------------------------- /docs/media/architecture/archetype-healthcare.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/archetype-healthcare.jpg -------------------------------------------------------------------------------- /docs/media/architecture/archetype-identity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/archetype-identity.jpg -------------------------------------------------------------------------------- /docs/media/architecture/archetype-logging.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/archetype-logging.jpg -------------------------------------------------------------------------------- /docs/media/architecture/archetype-machinelearning-dataflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/archetype-machinelearning-dataflow.jpg -------------------------------------------------------------------------------- /docs/media/architecture/archetype-machinelearning-networking.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/archetype-machinelearning-networking.jpg -------------------------------------------------------------------------------- /docs/media/architecture/archetype-machinelearning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/archetype-machinelearning.jpg -------------------------------------------------------------------------------- /docs/media/architecture/defender-regulatory-compliance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/defender-regulatory-compliance.jpg -------------------------------------------------------------------------------- /docs/media/architecture/defender-security-policy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/defender-security-policy.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-azfw/azfw-diagnostic-settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-azfw/azfw-diagnostic-settings.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-azfw/azfw-logs-dns.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-azfw/azfw-logs-dns.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-azfw/azfw-logs-fw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-azfw/azfw-logs-fw.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-azfw/azfw-policy-app-rules.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-azfw/azfw-policy-app-rules.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-azfw/azfw-policy-network-rules.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-azfw/azfw-policy-network-rules.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-azfw/azfw-policy-rulecollections.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-azfw/azfw-policy-rulecollections.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-azfw/hubnetwork-azfw-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-azfw/hubnetwork-azfw-design.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-azfw/hubvnet-address-space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-azfw/hubvnet-address-space.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-azfw/hubvnet-subnets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-azfw/hubvnet-subnets.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-azfw/mrz-udr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-azfw/mrz-udr.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-azfw/mrzvnet-address-space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-azfw/mrzvnet-address-space.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-azfw/mrzvnet-subnets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-azfw/mrzvnet-subnets.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-nva/hubnetwork-nva-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-nva/hubnetwork-nva-design.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-nva/hubvnet-address-space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-nva/hubvnet-address-space.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-nva/hubvnet-subnets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-nva/hubvnet-subnets.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-nva/mrz-udr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-nva/mrz-udr.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-nva/mrzvnet-address-space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-nva/mrzvnet-address-space.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-nva/mrzvnet-subnets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-nva/mrzvnet-subnets.jpg -------------------------------------------------------------------------------- /docs/media/architecture/hubnetwork-private-link-central-dns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/hubnetwork-private-link-central-dns.png -------------------------------------------------------------------------------- /docs/media/architecture/log-analytics-workspace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/log-analytics-workspace.jpg -------------------------------------------------------------------------------- /docs/media/architecture/management-group-structure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/management-group-structure.jpg -------------------------------------------------------------------------------- /docs/media/architecture/policy-compliance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/policy-compliance.jpg -------------------------------------------------------------------------------- /docs/media/architecture/policy-remediation-status.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/policy-remediation-status.jpg -------------------------------------------------------------------------------- /docs/media/architecture/policy-remediation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/policy-remediation.jpg -------------------------------------------------------------------------------- /docs/media/architecture/tags.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/architecture/tags.jpg -------------------------------------------------------------------------------- /docs/media/onboarding/import-a-git-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/onboarding/import-a-git-repo.png -------------------------------------------------------------------------------- /docs/media/onboarding/management-groups-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/onboarding/management-groups-01.png -------------------------------------------------------------------------------- /docs/media/onboarding/management-groups-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/onboarding/management-groups-02.png -------------------------------------------------------------------------------- /docs/media/onboarding/management-groups-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/onboarding/management-groups-03.png -------------------------------------------------------------------------------- /docs/media/onboarding/management-groups-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/onboarding/management-groups-04.png -------------------------------------------------------------------------------- /docs/media/onboarding/run-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/onboarding/run-1-1.png -------------------------------------------------------------------------------- /docs/media/onboarding/run-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/onboarding/run-1-2.png -------------------------------------------------------------------------------- /docs/media/onboarding/run-1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/onboarding/run-1-3.png -------------------------------------------------------------------------------- /docs/media/onboarding/run-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/onboarding/run-2-1.png -------------------------------------------------------------------------------- /docs/media/onboarding/run-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/onboarding/run-2-2.png -------------------------------------------------------------------------------- /docs/media/onboarding/run-2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/onboarding/run-2-3.png -------------------------------------------------------------------------------- /docs/media/onboarding/run-2-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/onboarding/run-2-4.png -------------------------------------------------------------------------------- /docs/media/onboarding/run-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/onboarding/run-3-1.png -------------------------------------------------------------------------------- /docs/media/onboarding/run-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/onboarding/run-3-2.png -------------------------------------------------------------------------------- /docs/media/onboarding/run-3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/media/onboarding/run-3-3.png -------------------------------------------------------------------------------- /docs/onboarding/azure-devops-pipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/onboarding/azure-devops-pipelines.md -------------------------------------------------------------------------------- /docs/onboarding/azure-devops-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/onboarding/azure-devops-scripts.md -------------------------------------------------------------------------------- /docs/onboarding/azure-devops-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/onboarding/azure-devops-setup.md -------------------------------------------------------------------------------- /docs/onboarding/configuration-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/onboarding/configuration-scripts.md -------------------------------------------------------------------------------- /docs/policy/authoring-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/policy/authoring-guide.md -------------------------------------------------------------------------------- /docs/policy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/policy/readme.md -------------------------------------------------------------------------------- /docs/visio/01 - Management Group Design.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/visio/01 - Management Group Design.vsdx -------------------------------------------------------------------------------- /docs/visio/02 - Logging Design.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/visio/02 - Logging Design.vsdx -------------------------------------------------------------------------------- /docs/visio/03 - Tags Design.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/visio/03 - Tags Design.vsdx -------------------------------------------------------------------------------- /docs/visio/04 - Hub Network Design.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/visio/04 - Hub Network Design.vsdx -------------------------------------------------------------------------------- /docs/visio/05 - Archetypes.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/docs/visio/05 - Archetypes.vsdx -------------------------------------------------------------------------------- /landingzones/lz-generic-subscription/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-generic-subscription/main.bicep -------------------------------------------------------------------------------- /landingzones/lz-generic-subscription/networking.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-generic-subscription/networking.bicep -------------------------------------------------------------------------------- /landingzones/lz-generic-subscription/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-generic-subscription/readme.md -------------------------------------------------------------------------------- /landingzones/lz-healthcare/lz.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-healthcare/lz.bicep -------------------------------------------------------------------------------- /landingzones/lz-healthcare/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-healthcare/main.bicep -------------------------------------------------------------------------------- /landingzones/lz-healthcare/networking.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-healthcare/networking.bicep -------------------------------------------------------------------------------- /landingzones/lz-healthcare/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-healthcare/readme.md -------------------------------------------------------------------------------- /landingzones/lz-machinelearning/lz.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-machinelearning/lz.bicep -------------------------------------------------------------------------------- /landingzones/lz-machinelearning/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-machinelearning/main.bicep -------------------------------------------------------------------------------- /landingzones/lz-machinelearning/networking.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-machinelearning/networking.bicep -------------------------------------------------------------------------------- /landingzones/lz-machinelearning/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-machinelearning/readme.md -------------------------------------------------------------------------------- /landingzones/lz-platform-connectivity-hub-azfw/azfw-policy/azure-firewall-policy.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-connectivity-hub-azfw/azfw-policy/azure-firewall-policy.bicep -------------------------------------------------------------------------------- /landingzones/lz-platform-connectivity-hub-azfw/bicepconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-connectivity-hub-azfw/bicepconfig.json -------------------------------------------------------------------------------- /landingzones/lz-platform-connectivity-hub-azfw/hub/hub-vnet-routes.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-connectivity-hub-azfw/hub/hub-vnet-routes.bicep -------------------------------------------------------------------------------- /landingzones/lz-platform-connectivity-hub-azfw/hub/hub-vnet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-connectivity-hub-azfw/hub/hub-vnet.bicep -------------------------------------------------------------------------------- /landingzones/lz-platform-connectivity-hub-azfw/main-azfw-policy.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-connectivity-hub-azfw/main-azfw-policy.bicep -------------------------------------------------------------------------------- /landingzones/lz-platform-connectivity-hub-azfw/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-connectivity-hub-azfw/main.bicep -------------------------------------------------------------------------------- /landingzones/lz-platform-connectivity-hub-azfw/mrz/mrz-vnet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-connectivity-hub-azfw/mrz/mrz-vnet.bicep -------------------------------------------------------------------------------- /landingzones/lz-platform-connectivity-hub-azfw/mrz/mrz.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-connectivity-hub-azfw/mrz/mrz.bicep -------------------------------------------------------------------------------- /landingzones/lz-platform-connectivity-hub-azfw/paz/paz.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-connectivity-hub-azfw/paz/paz.bicep -------------------------------------------------------------------------------- /landingzones/lz-platform-connectivity-hub-nva/hub/hub-vnet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-connectivity-hub-nva/hub/hub-vnet.bicep -------------------------------------------------------------------------------- /landingzones/lz-platform-connectivity-hub-nva/hub/lb-firewalls-hub.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-connectivity-hub-nva/hub/lb-firewalls-hub.bicep -------------------------------------------------------------------------------- /landingzones/lz-platform-connectivity-hub-nva/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-connectivity-hub-nva/main.bicep -------------------------------------------------------------------------------- /landingzones/lz-platform-connectivity-hub-nva/mrz/mrz-vnet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-connectivity-hub-nva/mrz/mrz-vnet.bicep -------------------------------------------------------------------------------- /landingzones/lz-platform-connectivity-hub-nva/mrz/mrz.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-connectivity-hub-nva/mrz/mrz.bicep -------------------------------------------------------------------------------- /landingzones/lz-platform-connectivity-hub-nva/nva/nva-vm.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-connectivity-hub-nva/nva/nva-vm.bicep -------------------------------------------------------------------------------- /landingzones/lz-platform-connectivity-hub-nva/paz/paz.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-connectivity-hub-nva/paz/paz.bicep -------------------------------------------------------------------------------- /landingzones/lz-platform-identity/dnsResolver.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-identity/dnsResolver.bicep -------------------------------------------------------------------------------- /landingzones/lz-platform-identity/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-identity/main.bicep -------------------------------------------------------------------------------- /landingzones/lz-platform-identity/networking.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-identity/networking.bicep -------------------------------------------------------------------------------- /landingzones/lz-platform-logging/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/lz-platform-logging/main.bicep -------------------------------------------------------------------------------- /landingzones/scaffold-subscription.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/scaffold-subscription.bicep -------------------------------------------------------------------------------- /landingzones/utils/mg-move/move-subscription.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/landingzones/utils/mg-move/move-subscription.bicep -------------------------------------------------------------------------------- /management-groups/structure-v2.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/management-groups/structure-v2.bicep -------------------------------------------------------------------------------- /management-groups/structure.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/management-groups/structure.bicep -------------------------------------------------------------------------------- /policy/builtin/assignments/asb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/builtin/assignments/asb.bicep -------------------------------------------------------------------------------- /policy/builtin/assignments/asb.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/builtin/assignments/asb.parameters.json -------------------------------------------------------------------------------- /policy/builtin/assignments/cis-msft-130.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/builtin/assignments/cis-msft-130.bicep -------------------------------------------------------------------------------- /policy/builtin/assignments/cis-msft-130.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/builtin/assignments/cis-msft-130.parameters.json -------------------------------------------------------------------------------- /policy/builtin/assignments/fedramp-moderate.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/builtin/assignments/fedramp-moderate.bicep -------------------------------------------------------------------------------- /policy/builtin/assignments/fedramp-moderate.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/builtin/assignments/fedramp-moderate.parameters.json -------------------------------------------------------------------------------- /policy/builtin/assignments/hitrust-hipaa.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/builtin/assignments/hitrust-hipaa.bicep -------------------------------------------------------------------------------- /policy/builtin/assignments/hitrust-hipaa.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/builtin/assignments/hitrust-hipaa.parameters.json -------------------------------------------------------------------------------- /policy/builtin/assignments/location.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/builtin/assignments/location.bicep -------------------------------------------------------------------------------- /policy/builtin/assignments/location.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/builtin/assignments/location.parameters.json -------------------------------------------------------------------------------- /policy/builtin/assignments/nist80053r4.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/builtin/assignments/nist80053r4.bicep -------------------------------------------------------------------------------- /policy/builtin/assignments/nist80053r4.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/builtin/assignments/nist80053r4.parameters.json -------------------------------------------------------------------------------- /policy/builtin/assignments/nist80053r5.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/builtin/assignments/nist80053r5.bicep -------------------------------------------------------------------------------- /policy/builtin/assignments/nist80053r5.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/builtin/assignments/nist80053r5.parameters.json -------------------------------------------------------------------------------- /policy/builtin/assignments/pbmm.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/builtin/assignments/pbmm.bicep -------------------------------------------------------------------------------- /policy/builtin/assignments/pbmm.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/builtin/assignments/pbmm.parameters.json -------------------------------------------------------------------------------- /policy/custom/assignments/AKS.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/assignments/AKS.bicep -------------------------------------------------------------------------------- /policy/custom/assignments/AKS.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/assignments/AKS.parameters.json -------------------------------------------------------------------------------- /policy/custom/assignments/DDoS.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/assignments/DDoS.bicep -------------------------------------------------------------------------------- /policy/custom/assignments/DDoS.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/assignments/DDoS.parameters.json -------------------------------------------------------------------------------- /policy/custom/assignments/DNSPrivateEndpoints.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/assignments/DNSPrivateEndpoints.bicep -------------------------------------------------------------------------------- /policy/custom/assignments/DNSPrivateEndpoints.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/assignments/DNSPrivateEndpoints.parameters.json -------------------------------------------------------------------------------- /policy/custom/assignments/DefenderForCloud.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/assignments/DefenderForCloud.bicep -------------------------------------------------------------------------------- /policy/custom/assignments/DefenderForCloud.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/assignments/DefenderForCloud.parameters.json -------------------------------------------------------------------------------- /policy/custom/assignments/LogAnalytics.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/assignments/LogAnalytics.bicep -------------------------------------------------------------------------------- /policy/custom/assignments/LogAnalytics.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/assignments/LogAnalytics.parameters.json -------------------------------------------------------------------------------- /policy/custom/assignments/Network.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/assignments/Network.bicep -------------------------------------------------------------------------------- /policy/custom/assignments/Network.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/assignments/Network.parameters.json -------------------------------------------------------------------------------- /policy/custom/assignments/Tags.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/assignments/Tags.bicep -------------------------------------------------------------------------------- /policy/custom/assignments/Tags.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/assignments/Tags.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/Block-AzureBastionHosts/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/Block-AzureBastionHosts/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/Block-AzureBastionHosts/azurepolicy.parameters.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /policy/custom/definitions/policy/Block-AzureBastionHosts/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/Block-AzureBastionHosts/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/DNS-PE-BlockPrivateDNSZones-PrivateLinks/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/DNS-PE-BlockPrivateDNSZones-PrivateLinks/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/DNS-PE-BlockPrivateDNSZones-PrivateLinks/azurepolicy.parameters.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /policy/custom/definitions/policy/DNS-PE-BlockPrivateDNSZones-PrivateLinks/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/DNS-PE-BlockPrivateDNSZones-PrivateLinks/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.AnalysisServices-servers/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.AnalysisServices-servers/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.AnalysisServices-servers/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.AnalysisServices-servers/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.AnalysisServices-servers/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.AnalysisServices-servers/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.ApiManagement-service/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.ApiManagement-service/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.ApiManagement-service/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.ApiManagement-service/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.ApiManagement-service/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.ApiManagement-service/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Automation-automationAccounts/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Automation-automationAccounts/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.AzureRecoveryVault-Backup/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.AzureRecoveryVault-Backup/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.AzureRecoveryVault-Backup/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.AzureRecoveryVault-Backup/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Cache-Redis/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Cache-Redis/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Cache-Redis/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Cache-Redis/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Cache-Redis/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Cache-Redis/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Cdn-profiles-endpoints/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Cdn-profiles-endpoints/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Cdn-profiles-endpoints/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Cdn-profiles-endpoints/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Cdn-profiles-frontdoor/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Cdn-profiles-frontdoor/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Cdn-profiles-frontdoor/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Cdn-profiles-frontdoor/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.DBForMariaDB-servers/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.DBForMariaDB-servers/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.DBForMariaDB-servers/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.DBForMariaDB-servers/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.DBForMariaDB-servers/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.DBForMariaDB-servers/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.DBforMySQL-servers/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.DBforMySQL-servers/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.DBforMySQL-servers/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.DBforMySQL-servers/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.DBforMySQL-servers/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.DBforMySQL-servers/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.DBforPostgreSQL-servers/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.DBforPostgreSQL-servers/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.DBforPostgreSQL-servers/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.DBforPostgreSQL-servers/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.DataFactory-factories/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.DataFactory-factories/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.DataFactory-factories/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.DataFactory-factories/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.DataFactory-factories/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.DataFactory-factories/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Databricks-workspaces/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Databricks-workspaces/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Databricks-workspaces/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Databricks-workspaces/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Databricks-workspaces/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Databricks-workspaces/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Devices-IotHubs/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Devices-IotHubs/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Devices-IotHubs/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Devices-IotHubs/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Devices-IotHubs/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Devices-IotHubs/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.EventGrid-systemTopics/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.EventGrid-systemTopics/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.EventGrid-systemTopics/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.EventGrid-systemTopics/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.EventGrid-topics/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.EventGrid-topics/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.EventGrid-topics/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.EventGrid-topics/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.EventGrid-topics/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.EventGrid-topics/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.EventHub-namespaces/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.EventHub-namespaces/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.EventHub-namespaces/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.EventHub-namespaces/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.EventHub-namespaces/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.EventHub-namespaces/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Kusto-clusters/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Kusto-clusters/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Kusto-clusters/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Kusto-clusters/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Kusto-clusters/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Kusto-clusters/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Media-mediaservices/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Media-mediaservices/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Media-mediaservices/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Media-mediaservices/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Media-mediaservices/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Media-mediaservices/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Network-azureFirewalls/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Network-azureFirewalls/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Network-azureFirewalls/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Network-azureFirewalls/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Network-bastionHosts/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Network-bastionHosts/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Network-bastionHosts/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Network-bastionHosts/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Network-bastionHosts/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Network-bastionHosts/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Network-loadBalancers/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Network-loadBalancers/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Network-loadBalancers/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Network-loadBalancers/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Network-loadBalancers/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Network-loadBalancers/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Network-virtualNetworks/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Network-virtualNetworks/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Network-virtualNetworks/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Network-virtualNetworks/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Relay-namespaces/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Relay-namespaces/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Relay-namespaces/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Relay-namespaces/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Relay-namespaces/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Relay-namespaces/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Resources-Subscriptions/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Resources-Subscriptions/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Resources-Subscriptions/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Resources-Subscriptions/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.SignalRService-SignalR/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.SignalRService-SignalR/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.SignalRService-SignalR/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.SignalRService-SignalR/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Sql-managedInstances/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Sql-managedInstances/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Sql-managedInstances/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Sql-managedInstances/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Sql-managedInstances/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Sql-managedInstances/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Sql-servers-databases/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Sql-servers-databases/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Sql-servers-databases/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Sql-servers-databases/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Sql-servers-databases/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Sql-servers-databases/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Synapse-workspaces/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Synapse-workspaces/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Synapse-workspaces/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Synapse-workspaces/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Synapse-workspaces/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Synapse-workspaces/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Web-sites-app/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Web-sites-app/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Web-sites-app/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Web-sites-app/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Web-sites-app/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Web-sites-app/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Web-sites-functionapp/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Web-sites-functionapp/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Web-sites-functionapp/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Web-sites-functionapp/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/LA-Microsoft.Web-sites-functionapp/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/LA-Microsoft.Web-sites-functionapp/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/Network-Audit-Missing-UDR/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/Network-Audit-Missing-UDR/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/Network-Audit-Missing-UDR/azurepolicy.parameters.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /policy/custom/definitions/policy/Network-Audit-Missing-UDR/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/Network-Audit-Missing-UDR/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/Network-Deploy-DDoS-Standard/azurepolicy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/Network-Deploy-DDoS-Standard/azurepolicy.config.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/Network-Deploy-DDoS-Standard/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/Network-Deploy-DDoS-Standard/azurepolicy.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/Network-Deploy-DDoS-Standard/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policy/Network-Deploy-DDoS-Standard/azurepolicy.rules.json -------------------------------------------------------------------------------- /policy/custom/definitions/policy/readme.md: -------------------------------------------------------------------------------- 1 | # Custom Policy Definitions 2 | 3 | 4 | -------------------------------------------------------------------------------- /policy/custom/definitions/policyset/AKS.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policyset/AKS.bicep -------------------------------------------------------------------------------- /policy/custom/definitions/policyset/AKS.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policyset/AKS.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policyset/DNSPrivateEndpoints.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policyset/DNSPrivateEndpoints.bicep -------------------------------------------------------------------------------- /policy/custom/definitions/policyset/DNSPrivateEndpoints.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policyset/DNSPrivateEndpoints.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policyset/DefenderForCloud.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policyset/DefenderForCloud.bicep -------------------------------------------------------------------------------- /policy/custom/definitions/policyset/DefenderForCloud.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policyset/DefenderForCloud.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policyset/LogAnalytics.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policyset/LogAnalytics.bicep -------------------------------------------------------------------------------- /policy/custom/definitions/policyset/LogAnalytics.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policyset/LogAnalytics.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policyset/Network.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policyset/Network.bicep -------------------------------------------------------------------------------- /policy/custom/definitions/policyset/Network.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policyset/Network.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policyset/Tags.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policyset/Tags.bicep -------------------------------------------------------------------------------- /policy/custom/definitions/policyset/Tags.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policyset/Tags.parameters.json -------------------------------------------------------------------------------- /policy/custom/definitions/policyset/templates/DNS-PrivateEndpoints/azurepolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policyset/templates/DNS-PrivateEndpoints/azurepolicy.json -------------------------------------------------------------------------------- /policy/custom/definitions/policyset/templates/Tags-Audit-Missing-Tag-Resource/azurepolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policyset/templates/Tags-Audit-Missing-Tag-Resource/azurepolicy.json -------------------------------------------------------------------------------- /policy/custom/definitions/policyset/templates/Tags-Require-Tag-ResourceGroup/azurepolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/policy/custom/definitions/policyset/templates/Tags-Require-Tag-ResourceGroup/azurepolicy.json -------------------------------------------------------------------------------- /roles/la-vminsights-readonly.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/roles/la-vminsights-readonly.bicep -------------------------------------------------------------------------------- /roles/lz-appowner.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/roles/lz-appowner.bicep -------------------------------------------------------------------------------- /roles/lz-netops.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/roles/lz-netops.bicep -------------------------------------------------------------------------------- /roles/lz-secops.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/roles/lz-secops.bicep -------------------------------------------------------------------------------- /roles/lz-subowner.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/roles/lz-subowner.bicep -------------------------------------------------------------------------------- /schemas/latest/landingzones/lz-generic-subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/lz-generic-subscription.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/lz-healthcare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/lz-healthcare.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/lz-machinelearning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/lz-machinelearning.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/lz-platform-connectivity-hub-azfw-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/lz-platform-connectivity-hub-azfw-policy.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/lz-platform-connectivity-hub-azfw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/lz-platform-connectivity-hub-azfw.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/lz-platform-connectivity-hub-nva.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/lz-platform-connectivity-hub-nva.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/lz-platform-identity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/lz-platform-identity.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/lz-platform-logging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/lz-platform-logging.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/types/aks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/types/aks.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/types/aml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/types/aml.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/types/appServiceLinuxContainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/types/appServiceLinuxContainer.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/types/automation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/types/automation.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/types/backupRecoveryVault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/types/backupRecoveryVault.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/types/hubNetwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/types/hubNetwork.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/types/keyVault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/types/keyVault.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/types/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/types/location.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/types/logAnalyticsWorkspaceId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/types/logAnalyticsWorkspaceId.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/types/resourceTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/types/resourceTags.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/types/securityCenter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/types/securityCenter.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/types/serviceHealthAlerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/types/serviceHealthAlerts.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/types/sqldb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/types/sqldb.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/types/sqlmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/types/sqlmi.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/types/subscriptionBudget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/types/subscriptionBudget.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/types/subscriptionRoleAssignments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/types/subscriptionRoleAssignments.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/types/subscriptionTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/types/subscriptionTags.json -------------------------------------------------------------------------------- /schemas/latest/landingzones/types/synapse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/landingzones/types/synapse.json -------------------------------------------------------------------------------- /schemas/latest/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/latest/readme.md -------------------------------------------------------------------------------- /schemas/v0.1.0/landingzones/lz-generic-subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.1.0/landingzones/lz-generic-subscription.json -------------------------------------------------------------------------------- /schemas/v0.1.0/landingzones/lz-healthcare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.1.0/landingzones/lz-healthcare.json -------------------------------------------------------------------------------- /schemas/v0.1.0/landingzones/lz-machinelearning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.1.0/landingzones/lz-machinelearning.json -------------------------------------------------------------------------------- /schemas/v0.1.0/landingzones/types/aks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.1.0/landingzones/types/aks.json -------------------------------------------------------------------------------- /schemas/v0.1.0/landingzones/types/aml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.1.0/landingzones/types/aml.json -------------------------------------------------------------------------------- /schemas/v0.1.0/landingzones/types/automation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.1.0/landingzones/types/automation.json -------------------------------------------------------------------------------- /schemas/v0.1.0/landingzones/types/hubNetwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.1.0/landingzones/types/hubNetwork.json -------------------------------------------------------------------------------- /schemas/v0.1.0/landingzones/types/keyVault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.1.0/landingzones/types/keyVault.json -------------------------------------------------------------------------------- /schemas/v0.1.0/landingzones/types/resourceTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.1.0/landingzones/types/resourceTags.json -------------------------------------------------------------------------------- /schemas/v0.1.0/landingzones/types/securityCenter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.1.0/landingzones/types/securityCenter.json -------------------------------------------------------------------------------- /schemas/v0.1.0/landingzones/types/serviceHealthAlerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.1.0/landingzones/types/serviceHealthAlerts.json -------------------------------------------------------------------------------- /schemas/v0.1.0/landingzones/types/sqldb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.1.0/landingzones/types/sqldb.json -------------------------------------------------------------------------------- /schemas/v0.1.0/landingzones/types/sqlmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.1.0/landingzones/types/sqlmi.json -------------------------------------------------------------------------------- /schemas/v0.1.0/landingzones/types/subscriptionBudget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.1.0/landingzones/types/subscriptionBudget.json -------------------------------------------------------------------------------- /schemas/v0.1.0/landingzones/types/subscriptionRoleAssignments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.1.0/landingzones/types/subscriptionRoleAssignments.json -------------------------------------------------------------------------------- /schemas/v0.1.0/landingzones/types/subscriptionTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.1.0/landingzones/types/subscriptionTags.json -------------------------------------------------------------------------------- /schemas/v0.1.0/landingzones/types/synapse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.1.0/landingzones/types/synapse.json -------------------------------------------------------------------------------- /schemas/v0.2.0/landingzones/lz-generic-subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/landingzones/lz-generic-subscription.json -------------------------------------------------------------------------------- /schemas/v0.2.0/landingzones/lz-healthcare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/landingzones/lz-healthcare.json -------------------------------------------------------------------------------- /schemas/v0.2.0/landingzones/lz-machinelearning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/landingzones/lz-machinelearning.json -------------------------------------------------------------------------------- /schemas/v0.2.0/landingzones/types/aks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/landingzones/types/aks.json -------------------------------------------------------------------------------- /schemas/v0.2.0/landingzones/types/aml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/landingzones/types/aml.json -------------------------------------------------------------------------------- /schemas/v0.2.0/landingzones/types/automation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/landingzones/types/automation.json -------------------------------------------------------------------------------- /schemas/v0.2.0/landingzones/types/backupRecoveryVault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/landingzones/types/backupRecoveryVault.json -------------------------------------------------------------------------------- /schemas/v0.2.0/landingzones/types/hubNetwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/landingzones/types/hubNetwork.json -------------------------------------------------------------------------------- /schemas/v0.2.0/landingzones/types/keyVault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/landingzones/types/keyVault.json -------------------------------------------------------------------------------- /schemas/v0.2.0/landingzones/types/resourceTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/landingzones/types/resourceTags.json -------------------------------------------------------------------------------- /schemas/v0.2.0/landingzones/types/securityCenter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/landingzones/types/securityCenter.json -------------------------------------------------------------------------------- /schemas/v0.2.0/landingzones/types/serviceHealthAlerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/landingzones/types/serviceHealthAlerts.json -------------------------------------------------------------------------------- /schemas/v0.2.0/landingzones/types/sqldb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/landingzones/types/sqldb.json -------------------------------------------------------------------------------- /schemas/v0.2.0/landingzones/types/sqlmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/landingzones/types/sqlmi.json -------------------------------------------------------------------------------- /schemas/v0.2.0/landingzones/types/subscriptionBudget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/landingzones/types/subscriptionBudget.json -------------------------------------------------------------------------------- /schemas/v0.2.0/landingzones/types/subscriptionRoleAssignments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/landingzones/types/subscriptionRoleAssignments.json -------------------------------------------------------------------------------- /schemas/v0.2.0/landingzones/types/subscriptionTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/landingzones/types/subscriptionTags.json -------------------------------------------------------------------------------- /schemas/v0.2.0/landingzones/types/synapse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/landingzones/types/synapse.json -------------------------------------------------------------------------------- /schemas/v0.2.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.2.0/readme.md -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/lz-generic-subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/lz-generic-subscription.json -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/lz-healthcare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/lz-healthcare.json -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/lz-machinelearning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/lz-machinelearning.json -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/types/aks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/types/aks.json -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/types/aml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/types/aml.json -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/types/appServiceLinuxContainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/types/appServiceLinuxContainer.json -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/types/automation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/types/automation.json -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/types/backupRecoveryVault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/types/backupRecoveryVault.json -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/types/hubNetwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/types/hubNetwork.json -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/types/keyVault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/types/keyVault.json -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/types/resourceTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/types/resourceTags.json -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/types/securityCenter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/types/securityCenter.json -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/types/serviceHealthAlerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/types/serviceHealthAlerts.json -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/types/sqldb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/types/sqldb.json -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/types/sqlmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/types/sqlmi.json -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/types/subscriptionBudget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/types/subscriptionBudget.json -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/types/subscriptionRoleAssignments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/types/subscriptionRoleAssignments.json -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/types/subscriptionTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/types/subscriptionTags.json -------------------------------------------------------------------------------- /schemas/v0.3.0/landingzones/types/synapse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/landingzones/types/synapse.json -------------------------------------------------------------------------------- /schemas/v0.3.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.3.0/readme.md -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/lz-generic-subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/lz-generic-subscription.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/lz-healthcare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/lz-healthcare.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/lz-machinelearning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/lz-machinelearning.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/types/aks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/types/aks.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/types/aml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/types/aml.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/types/appServiceLinuxContainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/types/appServiceLinuxContainer.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/types/automation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/types/automation.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/types/backupRecoveryVault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/types/backupRecoveryVault.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/types/hubNetwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/types/hubNetwork.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/types/keyVault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/types/keyVault.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/types/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/types/location.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/types/resourceTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/types/resourceTags.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/types/securityCenter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/types/securityCenter.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/types/serviceHealthAlerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/types/serviceHealthAlerts.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/types/sqldb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/types/sqldb.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/types/sqlmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/types/sqlmi.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/types/subscriptionBudget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/types/subscriptionBudget.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/types/subscriptionRoleAssignments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/types/subscriptionRoleAssignments.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/types/subscriptionTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/types/subscriptionTags.json -------------------------------------------------------------------------------- /schemas/v0.4.0/landingzones/types/synapse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/landingzones/types/synapse.json -------------------------------------------------------------------------------- /schemas/v0.4.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.4.0/readme.md -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/lz-generic-subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/lz-generic-subscription.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/lz-healthcare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/lz-healthcare.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/lz-machinelearning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/lz-machinelearning.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/lz-platform-connectivity-hub-azfw-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/lz-platform-connectivity-hub-azfw-policy.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/lz-platform-connectivity-hub-azfw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/lz-platform-connectivity-hub-azfw.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/lz-platform-connectivity-hub-nva.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/lz-platform-connectivity-hub-nva.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/lz-platform-logging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/lz-platform-logging.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/types/aks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/types/aks.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/types/aml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/types/aml.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/types/appServiceLinuxContainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/types/appServiceLinuxContainer.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/types/automation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/types/automation.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/types/backupRecoveryVault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/types/backupRecoveryVault.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/types/hubNetwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/types/hubNetwork.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/types/keyVault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/types/keyVault.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/types/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/types/location.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/types/logAnalyticsWorkspaceId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/types/logAnalyticsWorkspaceId.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/types/resourceTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/types/resourceTags.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/types/securityCenter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/types/securityCenter.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/types/serviceHealthAlerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/types/serviceHealthAlerts.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/types/sqldb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/types/sqldb.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/types/sqlmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/types/sqlmi.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/types/subscriptionBudget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/types/subscriptionBudget.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/types/subscriptionRoleAssignments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/types/subscriptionRoleAssignments.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/types/subscriptionTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/types/subscriptionTags.json -------------------------------------------------------------------------------- /schemas/v0.5.0/landingzones/types/synapse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/landingzones/types/synapse.json -------------------------------------------------------------------------------- /schemas/v0.5.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.5.0/readme.md -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/lz-generic-subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/lz-generic-subscription.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/lz-healthcare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/lz-healthcare.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/lz-machinelearning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/lz-machinelearning.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/lz-platform-connectivity-hub-azfw-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/lz-platform-connectivity-hub-azfw-policy.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/lz-platform-connectivity-hub-azfw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/lz-platform-connectivity-hub-azfw.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/lz-platform-connectivity-hub-nva.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/lz-platform-connectivity-hub-nva.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/lz-platform-logging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/lz-platform-logging.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/types/aks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/types/aks.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/types/aml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/types/aml.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/types/appServiceLinuxContainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/types/appServiceLinuxContainer.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/types/automation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/types/automation.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/types/backupRecoveryVault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/types/backupRecoveryVault.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/types/hubNetwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/types/hubNetwork.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/types/keyVault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/types/keyVault.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/types/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/types/location.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/types/logAnalyticsWorkspaceId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/types/logAnalyticsWorkspaceId.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/types/resourceTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/types/resourceTags.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/types/securityCenter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/types/securityCenter.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/types/serviceHealthAlerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/types/serviceHealthAlerts.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/types/sqldb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/types/sqldb.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/types/sqlmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/types/sqlmi.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/types/subscriptionBudget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/types/subscriptionBudget.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/types/subscriptionRoleAssignments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/types/subscriptionRoleAssignments.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/types/subscriptionTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/types/subscriptionTags.json -------------------------------------------------------------------------------- /schemas/v0.6.0/landingzones/types/synapse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/landingzones/types/synapse.json -------------------------------------------------------------------------------- /schemas/v0.6.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/schemas/v0.6.0/readme.md -------------------------------------------------------------------------------- /scripts/configuration/Connect-AlzCredential.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/configuration/Connect-AlzCredential.ps1 -------------------------------------------------------------------------------- /scripts/configuration/Get-AlzConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/configuration/Get-AlzConfiguration.ps1 -------------------------------------------------------------------------------- /scripts/configuration/Get-AlzSubscriptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/configuration/Get-AlzSubscriptions.ps1 -------------------------------------------------------------------------------- /scripts/configuration/Install-Prerequisites.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/configuration/Install-Prerequisites.ps1 -------------------------------------------------------------------------------- /scripts/configuration/New-AlzConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/configuration/New-AlzConfiguration.ps1 -------------------------------------------------------------------------------- /scripts/configuration/New-AlzCredential.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/configuration/New-AlzCredential.ps1 -------------------------------------------------------------------------------- /scripts/configuration/New-AlzDeployment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/configuration/New-AlzDeployment.ps1 -------------------------------------------------------------------------------- /scripts/configuration/Remove-AlzConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/configuration/Remove-AlzConfiguration.ps1 -------------------------------------------------------------------------------- /scripts/configuration/Remove-AlzCredential.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/configuration/Remove-AlzCredential.ps1 -------------------------------------------------------------------------------- /scripts/configuration/Test-AlzCredential.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/configuration/Test-AlzCredential.ps1 -------------------------------------------------------------------------------- /scripts/deployments/Functions/EnvironmentContext.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/deployments/Functions/EnvironmentContext.ps1 -------------------------------------------------------------------------------- /scripts/deployments/Functions/HubNetworkWithAzureFirewall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/deployments/Functions/HubNetworkWithAzureFirewall.ps1 -------------------------------------------------------------------------------- /scripts/deployments/Functions/HubNetworkWithNVA.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/deployments/Functions/HubNetworkWithNVA.ps1 -------------------------------------------------------------------------------- /scripts/deployments/Functions/Identity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/deployments/Functions/Identity.ps1 -------------------------------------------------------------------------------- /scripts/deployments/Functions/Logging.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/deployments/Functions/Logging.ps1 -------------------------------------------------------------------------------- /scripts/deployments/Functions/ManagementGroups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/deployments/Functions/ManagementGroups.ps1 -------------------------------------------------------------------------------- /scripts/deployments/Functions/Policy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/deployments/Functions/Policy.ps1 -------------------------------------------------------------------------------- /scripts/deployments/Functions/Roles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/deployments/Functions/Roles.ps1 -------------------------------------------------------------------------------- /scripts/deployments/Functions/Subscriptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/deployments/Functions/Subscriptions.ps1 -------------------------------------------------------------------------------- /scripts/deployments/Install-Prerequisites.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/deployments/Install-Prerequisites.ps1 -------------------------------------------------------------------------------- /scripts/deployments/RunWorkflows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/deployments/RunWorkflows.ps1 -------------------------------------------------------------------------------- /scripts/onboarding/.gitignore: -------------------------------------------------------------------------------- 1 | output/ 2 | -------------------------------------------------------------------------------- /scripts/onboarding/add-root-user-access-admin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/add-root-user-access-admin.bat -------------------------------------------------------------------------------- /scripts/onboarding/create-pipelines.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/create-pipelines.bat -------------------------------------------------------------------------------- /scripts/onboarding/create-security-group.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/create-security-group.bat -------------------------------------------------------------------------------- /scripts/onboarding/create-service-endpoint.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/create-service-endpoint.bat -------------------------------------------------------------------------------- /scripts/onboarding/create-service-principal.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/create-service-principal.bat -------------------------------------------------------------------------------- /scripts/onboarding/create-variable-group.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/create-variable-group.bat -------------------------------------------------------------------------------- /scripts/onboarding/delete-management-groups.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/delete-management-groups.bat -------------------------------------------------------------------------------- /scripts/onboarding/delete-pipelines.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/delete-pipelines.bat -------------------------------------------------------------------------------- /scripts/onboarding/delete-service-endpoint.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/delete-service-endpoint.bat -------------------------------------------------------------------------------- /scripts/onboarding/delete-service-principal.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/delete-service-principal.bat -------------------------------------------------------------------------------- /scripts/onboarding/list-management-groups.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/list-management-groups.bat -------------------------------------------------------------------------------- /scripts/onboarding/list-root-user-access-admin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/list-root-user-access-admin.bat -------------------------------------------------------------------------------- /scripts/onboarding/list-variables.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/list-variables.bat -------------------------------------------------------------------------------- /scripts/onboarding/remove-root-user-access-admin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/remove-root-user-access-admin.bat -------------------------------------------------------------------------------- /scripts/onboarding/run-pipelines.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/run-pipelines.bat -------------------------------------------------------------------------------- /scripts/onboarding/service-endpoint.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/service-endpoint.template.json -------------------------------------------------------------------------------- /scripts/onboarding/set-variables.CanadaPubSecALZ.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/set-variables.CanadaPubSecALZ.bat -------------------------------------------------------------------------------- /scripts/onboarding/set-variables.DevOpsOrgName.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/set-variables.DevOpsOrgName.bat -------------------------------------------------------------------------------- /scripts/onboarding/set-variables.ocag148outlook.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/set-variables.ocag148outlook.bat -------------------------------------------------------------------------------- /scripts/onboarding/share-service-endpoint.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/share-service-endpoint.bat -------------------------------------------------------------------------------- /scripts/onboarding/unset-variables.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/unset-variables.bat -------------------------------------------------------------------------------- /scripts/onboarding/update-variable-group.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/update-variable-group.bat -------------------------------------------------------------------------------- /scripts/onboarding/whereami-azure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/whereami-azure.bat -------------------------------------------------------------------------------- /scripts/onboarding/whoami-azure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/scripts/onboarding/whoami-azure.bat -------------------------------------------------------------------------------- /tests/landingzones/lz-healthcare/deployment-tests/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-healthcare/deployment-tests/main.bicep -------------------------------------------------------------------------------- /tests/landingzones/lz-healthcare/deployment-tests/test-runner.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-healthcare/deployment-tests/test-runner.bicep -------------------------------------------------------------------------------- /tests/landingzones/lz-healthcare/e2e-flow-tests/aml-terminal-acr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-healthcare/e2e-flow-tests/aml-terminal-acr.sh -------------------------------------------------------------------------------- /tests/landingzones/lz-healthcare/e2e-flow-tests/aml_key_vault_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-healthcare/e2e-flow-tests/aml_key_vault_test.py -------------------------------------------------------------------------------- /tests/landingzones/lz-healthcare/e2e-flow-tests/databricks_integration_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-healthcare/e2e-flow-tests/databricks_integration_tests.py -------------------------------------------------------------------------------- /tests/landingzones/lz-healthcare/e2e-flow-tests/synapse-spark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-healthcare/e2e-flow-tests/synapse-spark.py -------------------------------------------------------------------------------- /tests/landingzones/lz-healthcare/e2e-flow-tests/synapse-sql-dw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-healthcare/e2e-flow-tests/synapse-sql-dw.sql -------------------------------------------------------------------------------- /tests/landingzones/lz-healthcare/e2e-flow-tests/synapse-sql-serverless.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-healthcare/e2e-flow-tests/synapse-sql-serverless.sql -------------------------------------------------------------------------------- /tests/landingzones/lz-machinelearning/deployment-tests/app-service-vnet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-machinelearning/deployment-tests/app-service-vnet.bicep -------------------------------------------------------------------------------- /tests/landingzones/lz-machinelearning/deployment-tests/app-service.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-machinelearning/deployment-tests/app-service.bicep -------------------------------------------------------------------------------- /tests/landingzones/lz-machinelearning/deployment-tests/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-machinelearning/deployment-tests/main.bicep -------------------------------------------------------------------------------- /tests/landingzones/lz-machinelearning/deployment-tests/test-runner.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-machinelearning/deployment-tests/test-runner.bicep -------------------------------------------------------------------------------- /tests/landingzones/lz-machinelearning/e2e-flow-tests/aml-terminal-acr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-machinelearning/e2e-flow-tests/aml-terminal-acr.sh -------------------------------------------------------------------------------- /tests/landingzones/lz-machinelearning/e2e-flow-tests/aml_sql_key_vault_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-machinelearning/e2e-flow-tests/aml_sql_key_vault_test.py -------------------------------------------------------------------------------- /tests/landingzones/lz-machinelearning/e2e-flow-tests/azureml-deployment-scripts/echo_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-machinelearning/e2e-flow-tests/azureml-deployment-scripts/echo_score.py -------------------------------------------------------------------------------- /tests/landingzones/lz-machinelearning/e2e-flow-tests/databricks_integration_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-machinelearning/e2e-flow-tests/databricks_integration_tests.py -------------------------------------------------------------------------------- /tests/landingzones/lz-machinelearning/e2e-flow-tests/deploy-to-app-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-machinelearning/e2e-flow-tests/deploy-to-app-service.sh -------------------------------------------------------------------------------- /tests/landingzones/lz-machinelearning/e2e-flow-tests/hello-world_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-machinelearning/e2e-flow-tests/hello-world_deploy.py -------------------------------------------------------------------------------- /tests/landingzones/lz-machinelearning/e2e-flow-tests/hello-world_model_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/landingzones/lz-machinelearning/e2e-flow-tests/hello-world_model_package.py -------------------------------------------------------------------------------- /tests/schemas/lz-generic-subscription/BackupRecoveryVaultIsFalse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-generic-subscription/BackupRecoveryVaultIsFalse.json -------------------------------------------------------------------------------- /tests/schemas/lz-generic-subscription/BackupRecoveryVaultIsTrue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-generic-subscription/BackupRecoveryVaultIsTrue.json -------------------------------------------------------------------------------- /tests/schemas/lz-generic-subscription/BudgetIsFalse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-generic-subscription/BudgetIsFalse.json -------------------------------------------------------------------------------- /tests/schemas/lz-generic-subscription/BudgetIsTrue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-generic-subscription/BudgetIsTrue.json -------------------------------------------------------------------------------- /tests/schemas/lz-generic-subscription/EmptyResourceTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-generic-subscription/EmptyResourceTags.json -------------------------------------------------------------------------------- /tests/schemas/lz-generic-subscription/EmptySubscriptionTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-generic-subscription/EmptySubscriptionTags.json -------------------------------------------------------------------------------- /tests/schemas/lz-generic-subscription/FullDeployment-With-Hub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-generic-subscription/FullDeployment-With-Hub.json -------------------------------------------------------------------------------- /tests/schemas/lz-generic-subscription/FullDeployment-With-Location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-generic-subscription/FullDeployment-With-Location.json -------------------------------------------------------------------------------- /tests/schemas/lz-generic-subscription/FullDeployment-Without-Hub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-generic-subscription/FullDeployment-Without-Hub.json -------------------------------------------------------------------------------- /tests/schemas/lz-generic-subscription/WithoutCustomDNS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-generic-subscription/WithoutCustomDNS.json -------------------------------------------------------------------------------- /tests/schemas/lz-generic-subscription/WithoutSubnets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-generic-subscription/WithoutSubnets.json -------------------------------------------------------------------------------- /tests/schemas/lz-healthcare/BudgetIsFalse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-healthcare/BudgetIsFalse.json -------------------------------------------------------------------------------- /tests/schemas/lz-healthcare/BudgetIsTrue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-healthcare/BudgetIsTrue.json -------------------------------------------------------------------------------- /tests/schemas/lz-healthcare/EmptyResourceTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-healthcare/EmptyResourceTags.json -------------------------------------------------------------------------------- /tests/schemas/lz-healthcare/EmptySubscriptionTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-healthcare/EmptySubscriptionTags.json -------------------------------------------------------------------------------- /tests/schemas/lz-healthcare/FullDeployment-With-Hub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-healthcare/FullDeployment-With-Hub.json -------------------------------------------------------------------------------- /tests/schemas/lz-healthcare/FullDeployment-With-Location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-healthcare/FullDeployment-With-Location.json -------------------------------------------------------------------------------- /tests/schemas/lz-healthcare/FullDeployment-With-OptionalSubnets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-healthcare/FullDeployment-With-OptionalSubnets.json -------------------------------------------------------------------------------- /tests/schemas/lz-healthcare/FullDeployment-Without-Hub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-healthcare/FullDeployment-Without-Hub.json -------------------------------------------------------------------------------- /tests/schemas/lz-healthcare/SQLDB-aadAuthOnly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-healthcare/SQLDB-aadAuthOnly.json -------------------------------------------------------------------------------- /tests/schemas/lz-healthcare/SQLDB-mixedAuth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-healthcare/SQLDB-mixedAuth.json -------------------------------------------------------------------------------- /tests/schemas/lz-healthcare/SQLDB-sqlAuth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-healthcare/SQLDB-sqlAuth.json -------------------------------------------------------------------------------- /tests/schemas/lz-healthcare/SQLDBIsFalse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-healthcare/SQLDBIsFalse.json -------------------------------------------------------------------------------- /tests/schemas/lz-healthcare/Synapse-aadAuthOnly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-healthcare/Synapse-aadAuthOnly.json -------------------------------------------------------------------------------- /tests/schemas/lz-healthcare/Synapse-mixedAuth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-healthcare/Synapse-mixedAuth.json -------------------------------------------------------------------------------- /tests/schemas/lz-healthcare/Synapse-sqlAuth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-healthcare/Synapse-sqlAuth.json -------------------------------------------------------------------------------- /tests/schemas/lz-healthcare/WithoutCMK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-healthcare/WithoutCMK.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/AKS-AzureCNI-AzureNP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/AKS-AzureCNI-AzureNP.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/AKS-AzureCNI-Calico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/AKS-AzureCNI-Calico.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/AKS-Kubenet-Calico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/AKS-Kubenet-Calico.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/AKSIsFalse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/AKSIsFalse.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/AppServiceLinuxContainerIsFalse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/AppServiceLinuxContainerIsFalse.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/AppServiceLinuxContainerPrivateEndpointIsFalse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/AppServiceLinuxContainerPrivateEndpointIsFalse.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/BudgetIsFalse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/BudgetIsFalse.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/BudgetIsTrue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/BudgetIsTrue.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/EmptyResourceTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/EmptyResourceTags.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/EmptySubscriptionTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/EmptySubscriptionTags.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/FullDeployment-With-Hub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/FullDeployment-With-Hub.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/FullDeployment-With-Location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/FullDeployment-With-Location.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/FullDeployment-With-OptionalSubnets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/FullDeployment-With-OptionalSubnets.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/FullDeployment-Without-Hub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/FullDeployment-Without-Hub.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/SQLDB-aadAuthOnly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/SQLDB-aadAuthOnly.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/SQLDB-mixedAuth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/SQLDB-mixedAuth.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/SQLDB-sqlAuth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/SQLDB-sqlAuth.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/SQLDBIsFalse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/SQLDBIsFalse.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/SQLMIIsFalse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/SQLMIIsFalse.json -------------------------------------------------------------------------------- /tests/schemas/lz-machinelearning/WithoutCMK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-machinelearning/WithoutCMK.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-connectivity-hub-azfw-policy/FullDeployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-connectivity-hub-azfw-policy/FullDeployment.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-connectivity-hub-azfw/BudgetIsFalse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-connectivity-hub-azfw/BudgetIsFalse.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-connectivity-hub-azfw/FullDeployment-With-OptionalHubSubnets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-connectivity-hub-azfw/FullDeployment-With-OptionalHubSubnets.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-connectivity-hub-azfw/FullDeployment-WithAzureFirewallPolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-connectivity-hub-azfw/FullDeployment-WithAzureFirewallPolicy.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-connectivity-hub-azfw/FullDeployment-WithLogAnalyticsWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-connectivity-hub-azfw/FullDeployment-WithLogAnalyticsWorkspace.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-connectivity-hub-azfw/FullDeployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-connectivity-hub-azfw/FullDeployment.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-connectivity-hub-nva/BudgetIsFalse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-connectivity-hub-nva/BudgetIsFalse.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-connectivity-hub-nva/FullDeployment-With-FortigateBYOL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-connectivity-hub-nva/FullDeployment-With-FortigateBYOL.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-connectivity-hub-nva/FullDeployment-With-OptionalHubSubnets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-connectivity-hub-nva/FullDeployment-With-OptionalHubSubnets.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-connectivity-hub-nva/FullDeployment-With-Ubuntu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-connectivity-hub-nva/FullDeployment-With-Ubuntu.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-connectivity-hub-nva/FullDeployment-WithLogAnalyticsWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-connectivity-hub-nva/FullDeployment-WithLogAnalyticsWorkspace.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-identity/lz-Identity-With-DNS-Resolver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-identity/lz-Identity-With-DNS-Resolver.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-identity/lz-Identity-With-Private-DNS-Zones-And-DNS-Resolver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-identity/lz-Identity-With-Private-DNS-Zones-And-DNS-Resolver.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-identity/lz-Identity-With-Private-DNS-Zones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-identity/lz-Identity-With-Private-DNS-Zones.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-identity/lz-Identity-Without-DNS-Resolver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-identity/lz-Identity-Without-DNS-Resolver.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-logging/BudgetIsFalse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-logging/BudgetIsFalse.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-logging/EmptyResourceTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-logging/EmptyResourceTags.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-logging/EmptySubscriptionTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-logging/EmptySubscriptionTags.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-logging/FullDeployment-With-Location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-logging/FullDeployment-With-Location.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-logging/FullDeployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-logging/FullDeployment.json -------------------------------------------------------------------------------- /tests/schemas/lz-platform-logging/WithoutSubscriptionRoleAssignments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/lz-platform-logging/WithoutSubscriptionRoleAssignments.json -------------------------------------------------------------------------------- /tests/schemas/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/run-tests.sh -------------------------------------------------------------------------------- /tests/schemas/test-all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/test-all.ps1 -------------------------------------------------------------------------------- /tests/schemas/validate-deployment-config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/schemas/validate-deployment-config.ps1 -------------------------------------------------------------------------------- /tests/utils/build-all-biceps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CanadaPubSecALZ/HEAD/tests/utils/build-all-biceps.sh --------------------------------------------------------------------------------