├── .github └── workflows │ ├── Azure-Firewall.yaml │ ├── Base-Infra.yaml │ ├── aks-demo.yaml │ ├── ase.yaml │ ├── domain-controllers.yaml │ ├── erGateway-adhoc.yaml │ ├── monitor-queries.yaml │ ├── monitor-workspace.yaml │ ├── palo.yaml │ ├── set-vnet-dns.yaml │ └── vpn-connections.yaml ├── .gitignore ├── Azure-Functions ├── AppService-Nightly-Backup │ └── NightlyBackup.ps1 ├── Automatic-AppGateway-Backup │ ├── AppGateway-Backup-Script.ps1 │ └── ReadMe.md ├── Automatic-FirewallPolicy-Backup │ ├── .funcignore │ ├── BuildDiffs-v1-Timer │ │ ├── readme.md │ │ ├── run.ps1 │ │ └── sample.dat │ ├── BuildDiffs-v1 │ │ ├── .gitignore │ │ ├── bin │ │ │ └── DiffPlex.dll │ │ ├── run.ps1 │ │ └── sample.dat │ ├── BuildDiffs │ │ ├── .gitignore │ │ ├── Changes.txt │ │ ├── Source-Changes.txt │ │ ├── bin │ │ │ └── DiffPlex.dll │ │ ├── old.txt │ │ ├── run.ps1 │ │ └── sample.dat │ ├── Firewall-Backup │ │ ├── function.json │ │ ├── run.ps1 │ │ └── sample.dat │ ├── ReadMe.md │ ├── host.json │ ├── img │ │ └── EventGrid-AdvanacedFilter.png │ ├── logicapp.json │ ├── profile.ps1 │ ├── requirements.psd1 │ └── scratch.json ├── Automatic-KeyVault-Backup │ └── KeyVault-Backup.ps1 ├── Automatic-Sentinel-Incident-Creation │ ├── ReadMe.md │ ├── SentineCreateBaseScript.ps1 │ └── SentinelCloseBase.ps1 ├── Automatic-SharedDisk-Backups │ ├── .funcignore │ ├── .gitignore │ ├── ReadMe.md │ ├── SharedDiskBackup │ │ ├── readme.md │ │ ├── run.ps1 │ │ └── sample.dat │ ├── profile.ps1 │ └── requirements.psd1 ├── Automatic-StorageKey-Rotation │ ├── .funcignore │ ├── .gitignore │ ├── BasedScript.ps1 │ ├── Rotate-Storage-Keys │ │ ├── readme.md │ │ └── run.ps1 │ ├── profile.ps1 │ └── requirements.psd1 └── Puppet-Firewall-Policy │ └── .gitignore ├── AzureCloud └── MS-Demo │ ├── MS-Platform │ └── CoreServices │ │ └── ResourceDeployments │ │ ├── aks.bicep │ │ ├── ase.bicep │ │ ├── azfirewall.bicep │ │ ├── deployment-secrets-keyvault.bicep │ │ ├── domain-controllers.bicep │ │ ├── ergateway.bicep │ │ ├── loganalytics-workspaces.bicep │ │ ├── monitor-queries.bicep │ │ ├── palo.bicep │ │ └── vpn-connections.bicep │ ├── deployment.bicep │ └── updateDnsServers.bicep ├── Blueprint-Definitions └── Spoke-Base-Networking-Deploy-Blueprint-Def │ ├── ReadMe.md │ └── blueprintDef.bicep ├── Custom-Policies ├── Enterprise-Initiative │ ├── enterprise-initiative-nocustom.bicep │ └── enterprise-initiative.bicep └── VNET-Peer │ └── vnet-peer.bicep ├── LICENSE ├── Modules ├── Microsoft.ApiManagement │ └── service.bicep ├── Microsoft.Authorization │ ├── policyAssignments │ │ └── policyAssignments-mg.bicep │ ├── policyDefinitions │ │ ├── policyDefinitions-mg-array.bicep │ │ ├── policyDefinitions-mg.bicep │ │ ├── policyDefinitions-sub-array.bicep │ │ └── policyDefinitions-sub.bicep │ ├── policySetDefinitions │ │ ├── policySetDefinitions-mg.bicep │ │ └── policySetDefinitions-sub.bicep │ ├── roleAssignments │ │ ├── roleAssignments-mg.bicep │ │ ├── roleAssignments-rg.bicep │ │ └── roleAssignments-sub.bicep │ └── roleDefinitions │ │ └── roleDefinitions-mg.bicep ├── Microsoft.Blueprint │ └── blueprints │ │ ├── ReadMe.md │ │ ├── blueprintAssignments │ │ ├── blueprintAssignments-mg.bicep │ │ ├── blueprintAssignments-sub.bicep │ │ └── blueprintAssignments.bicep │ │ └── blueprints-mg.bicep ├── Microsoft.Cdn │ ├── profiles-FrontDoor.bicep │ └── routes │ │ └── routes.bicep ├── Microsoft.CognitiveServices │ └── accounts │ │ ├── accounts.bicep │ │ └── deployments │ │ └── deployments.bicep ├── Microsoft.Compute │ ├── availabilitySets │ │ └── availabilitySets.bicep │ ├── diskEncryptionSets │ │ └── diskEncryptionSets.bicep │ ├── disks │ │ └── disks.bicep │ └── virtualMachines │ │ ├── extensions │ │ └── customScript.bicep │ │ ├── runCommands │ │ └── runCommands.bicep │ │ └── virtualMachines.bicep ├── Microsoft.ContainerRegistry │ └── registries.bicep ├── Microsoft.ContainerService │ └── managedClusters.bicep ├── Microsoft.DesktopVirtualization │ ├── applicationgroups.bicep │ ├── hostpools.bicep │ └── workspaces.bicep ├── Microsoft.Graph │ └── groups │ │ ├── aadGroupUserDeployScript.bicep │ │ └── groups.bicep ├── Microsoft.Insights │ ├── components.bicep │ └── diagnosticsProperties.bicep ├── Microsoft.KeyVaults │ ├── secrets │ │ └── secrets.bicep │ └── vaults.bicep ├── Microsoft.MachineLearningServices │ └── workspaces.bicep ├── Microsoft.ManagedIdentity │ └── userAssignedIdentities.bicep ├── Microsoft.ManagedServices │ └── registrationDefinitions.bicep ├── Microsoft.Management │ └── managementGroups │ │ ├── ReadMe.md │ │ ├── managementGroups.bicep │ │ └── subscriptions │ │ └── subscriptions.bicep ├── Microsoft.NetApp │ ├── accounts.bicep │ └── capacityPools │ │ ├── capacityPools.bicep │ │ └── volumes │ │ ├── ReadMe.md │ │ └── volumes.bicep ├── Microsoft.Network │ ├── applicationGateways │ │ ├── applicationGateways-autoscale.bicep │ │ ├── backendHttpSettings │ │ │ └── backendHttpSettings.bicep │ │ ├── frontendPorts │ │ │ └── frontendPorts.bicep │ │ ├── httpListeners │ │ │ └── httpListeners.bicep │ │ ├── probes │ │ │ └── probes.bicep │ │ ├── redirectConfigurations │ │ │ └── redirectConfigurations.bicep │ │ └── requestRoutingRules │ │ │ └── requestRoutingRules.bicep │ ├── azureFirewalls │ │ └── azureFirewalls-vnet.bicep │ ├── connections │ │ └── connections.bicep │ ├── firewallPolicies │ │ ├── firewallPolicies.bicep │ │ ├── ruleCollectionGroups │ │ │ └── ruleCollectionGroups.bicep │ │ └── ruleGroups │ │ │ └── ruleGroups.bicep │ ├── frontDoors │ │ └── frontDoor-classic.bicep │ ├── loadBalancers │ │ └── loadBalancers.bicep │ ├── localNetworkGateways │ │ └── localNetworkGateways.bicep │ ├── networkInterfaces │ │ ├── networkInterfaces-existing.bicep │ │ └── networkInterfaces.bicep │ ├── networkManagers │ │ ├── connectivityConfigurations │ │ │ └── connectivityConfigurations.bicep │ │ ├── networkGroups │ │ │ └── networkGroups.bicep │ │ └── networkManagers.bicep │ ├── networkSecurityGroups │ │ └── networkSecurityGroups.bicep │ ├── networkWatchers │ │ └── flowlogs.bicep │ ├── privateDnsZones │ │ ├── DNSRecord │ │ │ └── dnsRecord.bicep │ │ └── privateDnsZones.bicep │ ├── privateEndpoints │ │ ├── ReadMe.md │ │ └── privateEndpoints.bicep │ ├── publicIpAddresses │ │ └── publicIpAddresses.bicep │ ├── trafficManagerProfiles │ │ └── ExternalEndpoints │ │ │ └── ExternalEndpoints.bicep │ ├── virtualHubs │ │ ├── hubRouteTables │ │ │ └── hubRouteTables.bicep │ │ ├── routeServer.bicep │ │ ├── virtualNetworkConnections │ │ │ └── virtualNetworkConnections.bicep │ │ └── vwanHub.bicep │ ├── virtualNetworkGateways │ │ └── virtualNetworkGateways.bicep │ ├── virtualNetworks │ │ ├── subnets │ │ │ └── subnets.bicep │ │ ├── virtualNetworkPeerings │ │ │ └── virtualNetworkPeerings.bicep │ │ ├── virtualNetworks-simple.bicep │ │ └── virtualNetworks.bicep │ ├── virtualWans │ │ └── virtualWan.bicep │ └── vpnGateways │ │ └── vpnGateways.bicep ├── Microsoft.OperationalInsights │ ├── queries │ │ └── queries.bicep │ ├── queryPacks.bicep │ └── workspaces.bicep ├── Microsoft.Resources │ ├── deploymentScripts │ │ ├── deploymentScripts-powershell-scriptblock.bicep │ │ └── deploymentScripts-powershell.bicep │ ├── resourceGroups │ │ └── resourceGroups.bicep │ └── templateSpecs │ │ └── templateSpecs.bicep ├── Microsoft.Storage │ └── storageAccounts │ │ ├── share │ │ └── share.bicep │ │ └── storageAccounts.bicep ├── Microsoft.Subscription │ └── aliases │ │ └── aliases-mg.bicep ├── Microsoft.Synapse │ └── workspace.bicep ├── Microsoft.VirtualMachineImages │ └── imageTemplates.bicep └── Microsoft.Web │ ├── hostingEnvironments │ ├── ReadMe.md │ └── hostingEnvironments.bicep │ ├── serverFarms │ ├── serverFarms-ASEv3.bicep │ ├── serverFarms-StandardLogicApps.bicep │ └── webAppFarms.bicep │ └── sites │ ├── sites-logicapp.bicep │ └── webApps.bicep ├── ReadMe.md ├── Scripts ├── ARM-To-Bicep-Syntax │ ├── ARM-to-Bicep-Syntax.ps1 │ └── ReadMe.md ├── Add-DDoSPlanToVNET │ └── Add-DDoSPlanToVNET.ps1 ├── Add-ResourceLocksToResourceGroups │ └── Add-ResourceLocksToResourceGroups.ps1 ├── Add-VnetBGPCommunities │ └── Add-VNETCommunities.ps1 ├── AppGateway-WAF-ExclusionCount │ └── AppGateway-WAF-ExclusionCount.ps1 ├── Application-Gateway-to-FrontDoor-Migration │ ├── AppGW-to-FrontDoor-audit.ps1 │ ├── Apply-to-FrontDoor.ps1 │ └── ReadMe.md ├── Azure-Arc-SQLExtension │ └── Deploy-ArcSQLExtension.ps1 ├── Azure-Firewall-Policy-Audit │ └── Azure-Firewall-Policy-Audit.ps1 ├── Azure-Firewall-Policy-Backup │ ├── Azure-Firewall-Policy-Backup.ps1 │ └── ReadMe.md ├── Azure-VM-Extension-Removal │ └── Remove-VMExtension.ps1 ├── Azure-VM-Rename │ └── ReadMe.md ├── Bulk-KeyVault-Secret-Add-AppGW │ ├── Add-Secret-AppGW.ps1 │ └── ReadMe.md ├── DomainController-DSC │ └── DomainControllerConfig.ps1 ├── Enable-AzureToAzure-SiteRecovery │ └── EnableASR.ps1 ├── File-AutoMove │ ├── File-AutoMove.ps1 │ └── ReadMe.md ├── IIS-DSC │ └── IISConfig.ps1 ├── KeyVault-Audit │ ├── ReadMe.md │ └── keyvault-audit.ps1 ├── Migrate-AppServices-ASE │ └── Migrate-AppService-ASE.ps1 ├── Migrate-VM-AvailabilityZones │ ├── Migrate-VM-FromZonesToRegional.ps1 │ └── ReadMe.md ├── NSG-Audit │ ├── ReadMe.md │ ├── nsg-audit.ps1 │ └── nsg-report-gen.ps1 ├── Prune-RecoverySnapshots-RestorePointCollections │ └── Prune-RestorePoints.ps1 ├── Remove-VMScaleSet │ └── Remove-VMScaleSet.ps1 ├── Remove-VMsFromAVDHostPool │ └── Remove-VMsFromAVDHostPool.ps1 ├── Remove-VNET-Peers │ ├── ReadMe.md │ ├── Remove-VNET-Peers-DeploymentScript.ps1 │ └── Remove-VNET-Peers.ps1 ├── Restart-Vms │ ├── ReadMe.md │ └── restart-vms.ps1 ├── Seed-AzureFiles-AzCopy │ └── AzCopy-AzureFiles.ps1 ├── Self-Signed-Certs │ ├── ReadMe.md │ ├── Self-Signed-Certs-DeploymentScript.ps1 │ ├── Self-Signed-Certs-OpenSsl-Wildcards-KV.ps1 │ └── Self-Signed-Certs.ps1 ├── Set-LogicAppStatus │ ├── ReadMe.md │ └── Set-LogicAppStatus.ps1 ├── VMs-SharedManagedDisk-BackupReport │ ├── ReadMe.md │ └── VMs-SharedManagedDisksBackupReport.ps1 ├── VNET-IP-Segmentation │ ├── Setup-PSSubnetCarver.ps1 │ ├── VNET-AddressSpace-Carve-DeploymentScript.ps1 │ ├── VNET-AddressSpace-Carve.ps1 │ ├── VNET-IP-Segmentation.ps1 │ └── testvars.ps1 ├── WVD-AutoScaling-Deploy │ ├── AVDAutoScaleRunbookVMSSBased.ps1 │ ├── CreateOrUpdateAzAutoAccount.ps1 │ ├── CreateOrUpdateAzLogicApp.ps1 │ ├── Customized-Autoscalling │ │ ├── AVDAutoScaleRunbookARMBased.ps1 │ │ └── New.ps1 │ ├── ReadMe.md │ ├── Set-LogicAppParameters.ps1 │ ├── WVDAutoScaleRunbookARMBased.ps1 │ └── runbookCreationTemplate.json ├── WVD-HostPool-Key │ └── WVD-HostPool-RegistrationKey.ps1 ├── WVD-SessionHost-DSC │ ├── Configuration.ps1 │ ├── FSLogixInstall.ps1 │ ├── Functions.ps1 │ └── Script-AddRdshServer.ps1 └── WebApp-Inbound-IPRestrictions │ ├── Manage-Inbound-AppService-IPRestrictions.ps1 │ └── ReadMe.md └── Standard-Deployments ├── AppGW-Internal-APIM └── ReadMe.md ├── ArcGIS-Deployment ├── ArcGIS-Deploy-Simple.bicep ├── ESRI-11.1-DSC-Modified │ ├── ArcGIS │ │ ├── ArcGIS.psd1 │ │ ├── ArcGIS.psm1 │ │ ├── DSCResources │ │ │ ├── ArcGIS_DataStore │ │ │ │ ├── ArcGIS_DataStore.psm1 │ │ │ │ └── ArcGIS_DataStore.schema.mof │ │ │ ├── ArcGIS_DataStoreBackup │ │ │ │ ├── ArcGIS_DataStoreBackup.psm1 │ │ │ │ └── ArcGIS_DataStoreBackup.schema.mof │ │ │ ├── ArcGIS_DataStoreItem │ │ │ │ ├── ArcGIS_DataStoreItem.psm1 │ │ │ │ └── ArcGIS_DataStoreItem.schema.mof │ │ │ ├── ArcGIS_DataStoreUpgrade │ │ │ │ ├── ArcGIS_DataStoreUpgrade.psm1 │ │ │ │ └── ArcGIS_DataStoreUpgrade.schema.mof │ │ │ ├── ArcGIS_DataStore_TLS │ │ │ │ ├── ArcGIS_DataStore_TLS.psm1 │ │ │ │ └── ArcGIS_DataStore_TLS.schema.mof │ │ │ ├── ArcGIS_Disk │ │ │ │ ├── ArcGIS_Disk.psm1 │ │ │ │ └── ArcGIS_Disk.schema.mof │ │ │ ├── ArcGIS_EGDB │ │ │ │ ├── ArcGIS_EGDB.psm1 │ │ │ │ ├── ArcGIS_EGDB.schema.mof │ │ │ │ ├── create_connection_file.py │ │ │ │ ├── create_connection_file_3x.py │ │ │ │ ├── enable_enterprise_gdb.py │ │ │ │ └── enable_enterprise_gdb_3x.py │ │ │ ├── ArcGIS_Federation │ │ │ │ ├── ArcGIS_Federation.psm1 │ │ │ │ └── ArcGIS_Federation.schema.mof │ │ │ ├── ArcGIS_FileShare │ │ │ │ ├── ArcGIS_FileShare.psm1 │ │ │ │ └── ArcGIS_FileShare.schema.mof │ │ │ ├── ArcGIS_GeoEvent │ │ │ │ ├── ArcGIS_GeoEvent.psm1 │ │ │ │ └── ArcGIS_GeoEvent.schema.mof │ │ │ ├── ArcGIS_IIS_TLS │ │ │ │ ├── ArcGIS_IIS_TLS.psm1 │ │ │ │ └── ArcGIS_IIS_TLS.schema.mof │ │ │ ├── ArcGIS_Install │ │ │ │ ├── ArcGIS_Install.psm1 │ │ │ │ └── ArcGIS_Install.schema.mof │ │ │ ├── ArcGIS_InstallMsiPackage │ │ │ │ ├── ArcGIS_InstallMsiPackage.psm1 │ │ │ │ └── ArcGIS_InstallMsiPackage.schema.mof │ │ │ ├── ArcGIS_InstallPatch │ │ │ │ ├── ArcGIS_InstallPatch.psm1 │ │ │ │ └── ArcGIS_InstallPatch.schema.mof │ │ │ ├── ArcGIS_License │ │ │ │ ├── ArcGIS_License.psm1 │ │ │ │ └── ArcGIS_License.schema.mof │ │ │ ├── ArcGIS_LogHarvester │ │ │ │ ├── ArcGIS_LogHarvester.psm1 │ │ │ │ ├── ArcGIS_LogHarvester.schema.mof │ │ │ │ ├── LogHarvesterSample.xml │ │ │ │ ├── LogHarvesterSample2.xml │ │ │ │ └── log4j.dtd │ │ │ ├── ArcGIS_MissionServer │ │ │ │ ├── ArcGIS_MissionServer.psm1 │ │ │ │ └── ArcGIS_MissionServer.schema.mof │ │ │ ├── ArcGIS_MissionServerSettings │ │ │ │ ├── ArcGIS_MissionServerSettings.psm1 │ │ │ │ └── ArcGIS_MissionServerSettings.schema.mof │ │ │ ├── ArcGIS_MissionServerUpgrade │ │ │ │ ├── ArcGIS_MissionServerUpgrade.psm1 │ │ │ │ └── ArcGIS_MissionServerUpgrade.schema.mof │ │ │ ├── ArcGIS_NotebookPostInstall │ │ │ │ ├── ArcGIS_NotebookPostInstall.psm1 │ │ │ │ └── ArcGIS_NotebookPostInstall.schema.mof │ │ │ ├── ArcGIS_NotebookServer │ │ │ │ ├── ArcGIS_NotebookServer.psm1 │ │ │ │ └── ArcGIS_NotebookServer.schema.mof │ │ │ ├── ArcGIS_NotebookServerSettings │ │ │ │ ├── ArcGIS_NotebookServerSettings.psm1 │ │ │ │ └── ArcGIS_NotebookServerSettings.schema.mof │ │ │ ├── ArcGIS_NotebookServerUpgrade │ │ │ │ ├── ArcGIS_NotebookServerUpgrade.psm1 │ │ │ │ └── ArcGIS_NotebookServerUpgrade.schema.mof │ │ │ ├── ArcGIS_PendingReboot │ │ │ │ ├── ArcGIS_PendingReboot.psm1 │ │ │ │ └── ArcGIS_PendingReboot.schema.mof │ │ │ ├── ArcGIS_Portal │ │ │ │ ├── ArcGIS_Portal.psm1 │ │ │ │ └── ArcGIS_Portal.schema.mof │ │ │ ├── ArcGIS_PortalSettings │ │ │ │ ├── ArcGIS_PortalSettings.psm1 │ │ │ │ └── ArcGIS_PortalSettings.schema.mof │ │ │ ├── ArcGIS_PortalUnregister │ │ │ │ ├── ArcGIS_PortalUnregister.psm1 │ │ │ │ └── ArcGIS_PortalUnregister.schema.mof │ │ │ ├── ArcGIS_PortalUpgrade │ │ │ │ ├── ArcGIS_PortalUpgrade.psm1 │ │ │ │ └── ArcGIS_PortalUpgrade.schema.mof │ │ │ ├── ArcGIS_Portal_TLS │ │ │ │ ├── ArcGIS_Portal_TLS.psm1 │ │ │ │ └── ArcGIS_Portal_TLS.schema.mof │ │ │ ├── ArcGIS_RemoteFile │ │ │ │ ├── ArcGIS_RemoteFile.psm1 │ │ │ │ └── ArcGIS_RemoteFile.schema.mof │ │ │ ├── ArcGIS_Server │ │ │ │ ├── ArcGIS_Server.psm1 │ │ │ │ └── ArcGIS_Server.schema.mof │ │ │ ├── ArcGIS_ServerSettings │ │ │ │ ├── ArcGIS_ServerSettings.psm1 │ │ │ │ └── ArcGIS_ServerSettings.schema.mof │ │ │ ├── ArcGIS_ServerUpgrade │ │ │ │ ├── ArcGIS_ServerUpgrade.psm1 │ │ │ │ └── ArcGIS_ServerUpgrade.schema.mof │ │ │ ├── ArcGIS_Server_RegisterDirectories │ │ │ │ ├── ArcGIS_Server_RegisterDirectories.psm1 │ │ │ │ └── ArcGIS_Server_RegisterDirectories.schema.mof │ │ │ ├── ArcGIS_Server_Service │ │ │ │ ├── ArcGIS_Server_Service.psm1 │ │ │ │ └── ArcGIS_Server_Service.schema.mof │ │ │ ├── ArcGIS_Server_TLS │ │ │ │ ├── ArcGIS_Server_TLS.psm1 │ │ │ │ └── ArcGIS_Server_TLS.schema.mof │ │ │ ├── ArcGIS_Service_Account │ │ │ │ ├── ArcGIS_Service_Account.psm1 │ │ │ │ └── ArcGIS_Service_Account.schema.mof │ │ │ ├── ArcGIS_TLSCertificateFileImport │ │ │ │ ├── ArcGIS_TLSCertificateFileImport.psm1 │ │ │ │ └── ArcGIS_TLSCertificateFileImport.schema.mof │ │ │ ├── ArcGIS_TLSCertificateImport │ │ │ │ ├── ArcGIS_TLSCertificateImport.psm1 │ │ │ │ └── ArcGIS_TLSCertificateImport.schema.mof │ │ │ ├── ArcGIS_WaitForComponent │ │ │ │ ├── ArcGIS_WaitForComponent.psm1 │ │ │ │ └── ArcGIS_WaitForComponent.schema.mof │ │ │ ├── ArcGIS_WebAdaptor │ │ │ │ ├── ArcGIS_WebAdaptor.psm1 │ │ │ │ └── ArcGIS_WebAdaptor.schema.mof │ │ │ ├── ArcGIS_WindowsService │ │ │ │ ├── ArcGIS_WindowsService.psm1 │ │ │ │ └── ArcGIS_WindowsService.schema.mof │ │ │ ├── ArcGIS_xDisk │ │ │ │ ├── ArcGIS_xDisk.psm1 │ │ │ │ └── ArcGIS_xDisk.schema.mof │ │ │ ├── ArcGIS_xFirewall │ │ │ │ ├── ArcGIS_xFirewall.Schema.mof │ │ │ │ └── ArcGIS_xFirewall.psm1 │ │ │ ├── ArcGIS_xSmbShare │ │ │ │ ├── ArcGIS_xSmbShare.psm1 │ │ │ │ └── ArcGIS_xSmbShare.schema.mof │ │ │ └── ArcGIS_xWindowsUpdate │ │ │ │ ├── ArcGIS_xWindowsUpdate.psm1 │ │ │ │ └── ArcGIS_xWindowsUpdate.schema.mof │ │ └── Modules │ │ │ └── ArcGIS.Common │ │ │ └── ArcGIS.Common.psm1 │ ├── BaseDeploymentSingleTierConfiguration.ps1 │ ├── DataStoreConfiguration.ps1 │ ├── DataStoreUpgradeConfigure.ps1 │ ├── DataStoreUpgradeInstall.ps1 │ ├── DataStoreUpgradePreInstall.ps1 │ ├── DiskConfiguration.ps1 │ ├── FileShareConfiguration.ps1 │ ├── GISServerMultiTierConfiguration.ps1 │ ├── GISServerSingleTierConfiguration.ps1 │ ├── GraphDataStoreConfiguration.ps1 │ ├── MissionServerMultiTierConfiguration.ps1 │ ├── MissionServerSingleTierConfiguration.ps1 │ ├── NotebookServerSingleTierConfiguration.ps1 │ ├── ObjectDataStoreConfiguration.ps1 │ ├── PortalConfiguration.ps1 │ ├── PortalPostUpgrade.ps1 │ ├── PortalUpgrade.ps1 │ ├── SQLServerConfiguration.ps1 │ ├── ServerConfiguration.ps1 │ ├── ServerUpgrade.ps1 │ ├── SpatiotemporalBigDataStoreConfiguration.ps1 │ ├── TileCacheDataStoreConfiguration.ps1 │ └── UpgradeVMFileShareConfiguration.ps1 ├── ReadMe.md ├── arcgis-root.bicep ├── datadsc.bicep ├── dnsZone.bicep ├── esri-appgw.bicep ├── keyvault.bicep ├── portaldsc.bicep └── serverdsc.bicep ├── Azure-Firewall-QueryPack ├── ReadMe.md └── querypack.bicep ├── Azure-IaaS-QueryPack ├── ReadMe.md └── query.bicep ├── AzureAI-Sandbox ├── AzureAI-Sandbox.bicep ├── ReadMe.md ├── network-resources.bicep ├── openAI-resources.bicep └── sample.bicep ├── CAF-Landing-Zone-MG ├── ReadMe.md ├── caf-mg-deploy.bicep ├── hubNetworking.bicep └── spokeNetworking.bicep ├── Cisco-FTDv-VMSS ├── ReadMe.md └── ftdv-vmss.bicep ├── DomainController ├── DomainController.bicep ├── ReadMe.md ├── nicDns.bicep ├── otherDCs.bicep └── vmPropertiesBuilder.bicep ├── IIS-Server ├── ReadMe.md └── iis-server.bicep ├── LogicApp-Standard ├── LogicApp-Standard.bicep ├── ReadMe.md ├── privateLink.bicep ├── subnetProperties.bicep └── subnetSetup.bicep ├── PSSubnetCarver ├── ReadMe.md └── psSubnetCarver.bicep ├── PaloAlto-HA-Active_Active ├── ReadMe.md ├── bootstrapxml.bicep ├── init-cfg.bicep ├── paloAlto-ha-aa.bicep └── paloAlto-ha-vmss.bicep ├── Private-Synapse ├── ReadMe.md ├── Script │ └── Approve-Private.ps1 ├── dnsrecordLoop.bicep └── synapse-private.bicep ├── SQLMI-Scheduled-Scaling ├── ReadMe.md └── Runbook.ps1 ├── Simple-AVD-Scaleset ├── ReadMe.md └── avd-scaleset.bicep ├── Spoke-Base-Networking-Deploy ├── ReadMe.md ├── Spoke-Blueprint.bicep ├── existingVnet.bicep ├── hubPeer.bicep ├── remoteRtAdd.bicep ├── removepeers.bicep └── vnet.bicep ├── Three-Tier-App ├── three-tier-app.bicep ├── vm.bicep └── vnet.bicep ├── Update-VNET-DNS ├── dnsServerAdd.bicep └── setVnet.bicep ├── VMSS-Log-Forwarder ├── ReadMe.md ├── cef-vmss-forwarder.bicep ├── lb.bicep ├── publicIp.bicep ├── storage.bicep └── vmss.bicep ├── WVD-HostPool ├── ReadMe.md └── wvd-hostpool-vmss.bicep └── Zero-Trust-ML-Workspace ├── ReadMe.md ├── avd.bicep ├── dnsrecordLoop.bicep ├── zeror-trust-ml-workspace-integrated.bicep └── zeror-trust-ml-workspace-sandbox.bicep /.github/workflows/Azure-Firewall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/.github/workflows/Azure-Firewall.yaml -------------------------------------------------------------------------------- /.github/workflows/Base-Infra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/.github/workflows/Base-Infra.yaml -------------------------------------------------------------------------------- /.github/workflows/aks-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/.github/workflows/aks-demo.yaml -------------------------------------------------------------------------------- /.github/workflows/ase.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/.github/workflows/ase.yaml -------------------------------------------------------------------------------- /.github/workflows/domain-controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/.github/workflows/domain-controllers.yaml -------------------------------------------------------------------------------- /.github/workflows/erGateway-adhoc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/.github/workflows/erGateway-adhoc.yaml -------------------------------------------------------------------------------- /.github/workflows/monitor-queries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/.github/workflows/monitor-queries.yaml -------------------------------------------------------------------------------- /.github/workflows/monitor-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/.github/workflows/monitor-workspace.yaml -------------------------------------------------------------------------------- /.github/workflows/palo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/.github/workflows/palo.yaml -------------------------------------------------------------------------------- /.github/workflows/set-vnet-dns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/.github/workflows/set-vnet-dns.yaml -------------------------------------------------------------------------------- /.github/workflows/vpn-connections.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/.github/workflows/vpn-connections.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/.gitignore -------------------------------------------------------------------------------- /Azure-Functions/AppService-Nightly-Backup/NightlyBackup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/AppService-Nightly-Backup/NightlyBackup.ps1 -------------------------------------------------------------------------------- /Azure-Functions/Automatic-AppGateway-Backup/AppGateway-Backup-Script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-AppGateway-Backup/AppGateway-Backup-Script.ps1 -------------------------------------------------------------------------------- /Azure-Functions/Automatic-AppGateway-Backup/ReadMe.md: -------------------------------------------------------------------------------- 1 | ## WORK IN PROGRESS -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/.funcignore -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs-v1-Timer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs-v1-Timer/readme.md -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs-v1-Timer/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs-v1-Timer/run.ps1 -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs-v1-Timer/sample.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs-v1/.gitignore: -------------------------------------------------------------------------------- 1 | !bin/ -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs-v1/bin/DiffPlex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs-v1/bin/DiffPlex.dll -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs-v1/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs-v1/run.ps1 -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs-v1/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } 4 | -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs/.gitignore: -------------------------------------------------------------------------------- 1 | !bin/ -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs/Changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs/Changes.txt -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs/Source-Changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs/Source-Changes.txt -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs/bin/DiffPlex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs/bin/DiffPlex.dll -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs/old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs/old.txt -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs/run.ps1 -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/BuildDiffs/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } 4 | -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/Firewall-Backup/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/Firewall-Backup/function.json -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/Firewall-Backup/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/Firewall-Backup/run.ps1 -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/Firewall-Backup/sample.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/Firewall-Backup/sample.dat -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/ReadMe.md -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/host.json -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/img/EventGrid-AdvanacedFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/img/EventGrid-AdvanacedFilter.png -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/logicapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/logicapp.json -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/profile.ps1 -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-FirewallPolicy-Backup/requirements.psd1 -------------------------------------------------------------------------------- /Azure-Functions/Automatic-FirewallPolicy-Backup/scratch.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Azure-Functions/Automatic-KeyVault-Backup/KeyVault-Backup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-KeyVault-Backup/KeyVault-Backup.ps1 -------------------------------------------------------------------------------- /Azure-Functions/Automatic-Sentinel-Incident-Creation/ReadMe.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Azure-Functions/Automatic-Sentinel-Incident-Creation/SentineCreateBaseScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-Sentinel-Incident-Creation/SentineCreateBaseScript.ps1 -------------------------------------------------------------------------------- /Azure-Functions/Automatic-Sentinel-Incident-Creation/SentinelCloseBase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-Sentinel-Incident-Creation/SentinelCloseBase.ps1 -------------------------------------------------------------------------------- /Azure-Functions/Automatic-SharedDisk-Backups/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-SharedDisk-Backups/.funcignore -------------------------------------------------------------------------------- /Azure-Functions/Automatic-SharedDisk-Backups/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-SharedDisk-Backups/.gitignore -------------------------------------------------------------------------------- /Azure-Functions/Automatic-SharedDisk-Backups/ReadMe.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Azure-Functions/Automatic-SharedDisk-Backups/SharedDiskBackup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-SharedDisk-Backups/SharedDiskBackup/readme.md -------------------------------------------------------------------------------- /Azure-Functions/Automatic-SharedDisk-Backups/SharedDiskBackup/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-SharedDisk-Backups/SharedDiskBackup/run.ps1 -------------------------------------------------------------------------------- /Azure-Functions/Automatic-SharedDisk-Backups/SharedDiskBackup/sample.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Azure-Functions/Automatic-SharedDisk-Backups/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-SharedDisk-Backups/profile.ps1 -------------------------------------------------------------------------------- /Azure-Functions/Automatic-SharedDisk-Backups/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-SharedDisk-Backups/requirements.psd1 -------------------------------------------------------------------------------- /Azure-Functions/Automatic-StorageKey-Rotation/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-StorageKey-Rotation/.funcignore -------------------------------------------------------------------------------- /Azure-Functions/Automatic-StorageKey-Rotation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-StorageKey-Rotation/.gitignore -------------------------------------------------------------------------------- /Azure-Functions/Automatic-StorageKey-Rotation/BasedScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-StorageKey-Rotation/BasedScript.ps1 -------------------------------------------------------------------------------- /Azure-Functions/Automatic-StorageKey-Rotation/Rotate-Storage-Keys/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-StorageKey-Rotation/Rotate-Storage-Keys/readme.md -------------------------------------------------------------------------------- /Azure-Functions/Automatic-StorageKey-Rotation/Rotate-Storage-Keys/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-StorageKey-Rotation/Rotate-Storage-Keys/run.ps1 -------------------------------------------------------------------------------- /Azure-Functions/Automatic-StorageKey-Rotation/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-StorageKey-Rotation/profile.ps1 -------------------------------------------------------------------------------- /Azure-Functions/Automatic-StorageKey-Rotation/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Automatic-StorageKey-Rotation/requirements.psd1 -------------------------------------------------------------------------------- /Azure-Functions/Puppet-Firewall-Policy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Azure-Functions/Puppet-Firewall-Policy/.gitignore -------------------------------------------------------------------------------- /AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/aks.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/aks.bicep -------------------------------------------------------------------------------- /AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/ase.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/ase.bicep -------------------------------------------------------------------------------- /AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/azfirewall.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/azfirewall.bicep -------------------------------------------------------------------------------- /AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/deployment-secrets-keyvault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/deployment-secrets-keyvault.bicep -------------------------------------------------------------------------------- /AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/domain-controllers.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/domain-controllers.bicep -------------------------------------------------------------------------------- /AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/ergateway.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/ergateway.bicep -------------------------------------------------------------------------------- /AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/loganalytics-workspaces.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/loganalytics-workspaces.bicep -------------------------------------------------------------------------------- /AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/monitor-queries.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/monitor-queries.bicep -------------------------------------------------------------------------------- /AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/palo.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/palo.bicep -------------------------------------------------------------------------------- /AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/vpn-connections.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/AzureCloud/MS-Demo/MS-Platform/CoreServices/ResourceDeployments/vpn-connections.bicep -------------------------------------------------------------------------------- /AzureCloud/MS-Demo/deployment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/AzureCloud/MS-Demo/deployment.bicep -------------------------------------------------------------------------------- /AzureCloud/MS-Demo/updateDnsServers.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/AzureCloud/MS-Demo/updateDnsServers.bicep -------------------------------------------------------------------------------- /Blueprint-Definitions/Spoke-Base-Networking-Deploy-Blueprint-Def/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Blueprint-Definitions/Spoke-Base-Networking-Deploy-Blueprint-Def/ReadMe.md -------------------------------------------------------------------------------- /Blueprint-Definitions/Spoke-Base-Networking-Deploy-Blueprint-Def/blueprintDef.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Blueprint-Definitions/Spoke-Base-Networking-Deploy-Blueprint-Def/blueprintDef.bicep -------------------------------------------------------------------------------- /Custom-Policies/Enterprise-Initiative/enterprise-initiative-nocustom.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Custom-Policies/Enterprise-Initiative/enterprise-initiative-nocustom.bicep -------------------------------------------------------------------------------- /Custom-Policies/Enterprise-Initiative/enterprise-initiative.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Custom-Policies/Enterprise-Initiative/enterprise-initiative.bicep -------------------------------------------------------------------------------- /Custom-Policies/VNET-Peer/vnet-peer.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Custom-Policies/VNET-Peer/vnet-peer.bicep -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/LICENSE -------------------------------------------------------------------------------- /Modules/Microsoft.ApiManagement/service.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.ApiManagement/service.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Authorization/policyAssignments/policyAssignments-mg.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Authorization/policyAssignments/policyAssignments-mg.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Authorization/policyDefinitions/policyDefinitions-mg-array.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Authorization/policyDefinitions/policyDefinitions-mg-array.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Authorization/policyDefinitions/policyDefinitions-mg.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Authorization/policyDefinitions/policyDefinitions-mg.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Authorization/policyDefinitions/policyDefinitions-sub-array.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Authorization/policyDefinitions/policyDefinitions-sub-array.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Authorization/policyDefinitions/policyDefinitions-sub.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Authorization/policyDefinitions/policyDefinitions-sub.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Authorization/policySetDefinitions/policySetDefinitions-mg.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Authorization/policySetDefinitions/policySetDefinitions-mg.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Authorization/policySetDefinitions/policySetDefinitions-sub.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Authorization/policySetDefinitions/policySetDefinitions-sub.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Authorization/roleAssignments/roleAssignments-mg.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Authorization/roleAssignments/roleAssignments-mg.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Authorization/roleAssignments/roleAssignments-rg.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Authorization/roleAssignments/roleAssignments-rg.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Authorization/roleAssignments/roleAssignments-sub.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Authorization/roleAssignments/roleAssignments-sub.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Authorization/roleDefinitions/roleDefinitions-mg.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Authorization/roleDefinitions/roleDefinitions-mg.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Blueprint/blueprints/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Blueprint/blueprints/ReadMe.md -------------------------------------------------------------------------------- /Modules/Microsoft.Blueprint/blueprints/blueprintAssignments/blueprintAssignments-mg.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Blueprint/blueprints/blueprintAssignments/blueprintAssignments-mg.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Blueprint/blueprints/blueprintAssignments/blueprintAssignments-sub.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Blueprint/blueprints/blueprintAssignments/blueprintAssignments-sub.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Blueprint/blueprints/blueprintAssignments/blueprintAssignments.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Blueprint/blueprints/blueprintAssignments/blueprintAssignments.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Blueprint/blueprints/blueprints-mg.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Blueprint/blueprints/blueprints-mg.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Cdn/profiles-FrontDoor.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Cdn/profiles-FrontDoor.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Cdn/routes/routes.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Cdn/routes/routes.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.CognitiveServices/accounts/accounts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.CognitiveServices/accounts/accounts.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.CognitiveServices/accounts/deployments/deployments.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.CognitiveServices/accounts/deployments/deployments.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Compute/availabilitySets/availabilitySets.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Compute/availabilitySets/availabilitySets.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Compute/diskEncryptionSets/diskEncryptionSets.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Compute/diskEncryptionSets/diskEncryptionSets.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Compute/disks/disks.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Compute/disks/disks.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Compute/virtualMachines/extensions/customScript.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Compute/virtualMachines/extensions/customScript.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Compute/virtualMachines/runCommands/runCommands.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Compute/virtualMachines/runCommands/runCommands.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Compute/virtualMachines/virtualMachines.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Compute/virtualMachines/virtualMachines.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.ContainerRegistry/registries.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.ContainerRegistry/registries.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.ContainerService/managedClusters.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.ContainerService/managedClusters.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.DesktopVirtualization/applicationgroups.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.DesktopVirtualization/applicationgroups.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.DesktopVirtualization/hostpools.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.DesktopVirtualization/hostpools.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.DesktopVirtualization/workspaces.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.DesktopVirtualization/workspaces.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Graph/groups/aadGroupUserDeployScript.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Graph/groups/aadGroupUserDeployScript.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Graph/groups/groups.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Graph/groups/groups.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Insights/components.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Insights/components.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Insights/diagnosticsProperties.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Insights/diagnosticsProperties.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.KeyVaults/secrets/secrets.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.KeyVaults/secrets/secrets.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.KeyVaults/vaults.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.KeyVaults/vaults.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.MachineLearningServices/workspaces.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.MachineLearningServices/workspaces.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.ManagedIdentity/userAssignedIdentities.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.ManagedIdentity/userAssignedIdentities.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.ManagedServices/registrationDefinitions.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.ManagedServices/registrationDefinitions.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Management/managementGroups/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Management/managementGroups/ReadMe.md -------------------------------------------------------------------------------- /Modules/Microsoft.Management/managementGroups/managementGroups.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Management/managementGroups/managementGroups.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Management/managementGroups/subscriptions/subscriptions.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Management/managementGroups/subscriptions/subscriptions.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.NetApp/accounts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.NetApp/accounts.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.NetApp/capacityPools/capacityPools.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.NetApp/capacityPools/capacityPools.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.NetApp/capacityPools/volumes/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.NetApp/capacityPools/volumes/ReadMe.md -------------------------------------------------------------------------------- /Modules/Microsoft.NetApp/capacityPools/volumes/volumes.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.NetApp/capacityPools/volumes/volumes.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/applicationGateways/applicationGateways-autoscale.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/applicationGateways/applicationGateways-autoscale.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/applicationGateways/backendHttpSettings/backendHttpSettings.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/applicationGateways/backendHttpSettings/backendHttpSettings.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/applicationGateways/frontendPorts/frontendPorts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/applicationGateways/frontendPorts/frontendPorts.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/applicationGateways/httpListeners/httpListeners.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/applicationGateways/httpListeners/httpListeners.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/applicationGateways/probes/probes.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/applicationGateways/probes/probes.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/applicationGateways/redirectConfigurations/redirectConfigurations.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/applicationGateways/redirectConfigurations/redirectConfigurations.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/applicationGateways/requestRoutingRules/requestRoutingRules.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/applicationGateways/requestRoutingRules/requestRoutingRules.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/azureFirewalls/azureFirewalls-vnet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/azureFirewalls/azureFirewalls-vnet.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/connections/connections.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/connections/connections.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/firewallPolicies/firewallPolicies.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/firewallPolicies/firewallPolicies.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/firewallPolicies/ruleCollectionGroups/ruleCollectionGroups.bicep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Microsoft.Network/firewallPolicies/ruleGroups/ruleGroups.bicep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Microsoft.Network/frontDoors/frontDoor-classic.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/frontDoors/frontDoor-classic.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/loadBalancers/loadBalancers.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/loadBalancers/loadBalancers.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/localNetworkGateways/localNetworkGateways.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/localNetworkGateways/localNetworkGateways.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/networkInterfaces/networkInterfaces-existing.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/networkInterfaces/networkInterfaces-existing.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/networkInterfaces/networkInterfaces.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/networkInterfaces/networkInterfaces.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/networkManagers/connectivityConfigurations/connectivityConfigurations.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/networkManagers/connectivityConfigurations/connectivityConfigurations.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/networkManagers/networkGroups/networkGroups.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/networkManagers/networkGroups/networkGroups.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/networkManagers/networkManagers.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/networkManagers/networkManagers.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/networkSecurityGroups/networkSecurityGroups.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/networkSecurityGroups/networkSecurityGroups.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/networkWatchers/flowlogs.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/networkWatchers/flowlogs.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/privateDnsZones/DNSRecord/dnsRecord.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/privateDnsZones/DNSRecord/dnsRecord.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/privateDnsZones/privateDnsZones.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/privateDnsZones/privateDnsZones.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/privateEndpoints/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/privateEndpoints/ReadMe.md -------------------------------------------------------------------------------- /Modules/Microsoft.Network/privateEndpoints/privateEndpoints.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/privateEndpoints/privateEndpoints.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/publicIpAddresses/publicIpAddresses.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/publicIpAddresses/publicIpAddresses.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/trafficManagerProfiles/ExternalEndpoints/ExternalEndpoints.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/trafficManagerProfiles/ExternalEndpoints/ExternalEndpoints.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/virtualHubs/hubRouteTables/hubRouteTables.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/virtualHubs/hubRouteTables/hubRouteTables.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/virtualHubs/routeServer.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/virtualHubs/routeServer.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/virtualHubs/virtualNetworkConnections/virtualNetworkConnections.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/virtualHubs/virtualNetworkConnections/virtualNetworkConnections.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/virtualHubs/vwanHub.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/virtualHubs/vwanHub.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/virtualNetworkGateways/virtualNetworkGateways.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/virtualNetworkGateways/virtualNetworkGateways.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/virtualNetworks/subnets/subnets.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/virtualNetworks/subnets/subnets.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/virtualNetworks/virtualNetworkPeerings/virtualNetworkPeerings.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/virtualNetworks/virtualNetworkPeerings/virtualNetworkPeerings.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/virtualNetworks/virtualNetworks-simple.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/virtualNetworks/virtualNetworks-simple.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/virtualNetworks/virtualNetworks.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/virtualNetworks/virtualNetworks.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/virtualWans/virtualWan.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/virtualWans/virtualWan.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Network/vpnGateways/vpnGateways.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Network/vpnGateways/vpnGateways.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.OperationalInsights/queries/queries.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.OperationalInsights/queries/queries.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.OperationalInsights/queryPacks.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.OperationalInsights/queryPacks.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.OperationalInsights/workspaces.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.OperationalInsights/workspaces.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Resources/deploymentScripts/deploymentScripts-powershell-scriptblock.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Resources/deploymentScripts/deploymentScripts-powershell-scriptblock.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Resources/deploymentScripts/deploymentScripts-powershell.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Resources/deploymentScripts/deploymentScripts-powershell.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Resources/resourceGroups/resourceGroups.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Resources/resourceGroups/resourceGroups.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Resources/templateSpecs/templateSpecs.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Resources/templateSpecs/templateSpecs.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Storage/storageAccounts/share/share.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Storage/storageAccounts/share/share.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Storage/storageAccounts/storageAccounts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Storage/storageAccounts/storageAccounts.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Subscription/aliases/aliases-mg.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Subscription/aliases/aliases-mg.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Synapse/workspace.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Synapse/workspace.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.VirtualMachineImages/imageTemplates.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.VirtualMachineImages/imageTemplates.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Web/hostingEnvironments/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Web/hostingEnvironments/ReadMe.md -------------------------------------------------------------------------------- /Modules/Microsoft.Web/hostingEnvironments/hostingEnvironments.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Web/hostingEnvironments/hostingEnvironments.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Web/serverFarms/serverFarms-ASEv3.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Web/serverFarms/serverFarms-ASEv3.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Web/serverFarms/serverFarms-StandardLogicApps.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Web/serverFarms/serverFarms-StandardLogicApps.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Web/serverFarms/webAppFarms.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Web/serverFarms/webAppFarms.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Web/sites/sites-logicapp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Web/sites/sites-logicapp.bicep -------------------------------------------------------------------------------- /Modules/Microsoft.Web/sites/webApps.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Modules/Microsoft.Web/sites/webApps.bicep -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/ReadMe.md -------------------------------------------------------------------------------- /Scripts/ARM-To-Bicep-Syntax/ARM-to-Bicep-Syntax.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/ARM-To-Bicep-Syntax/ARM-to-Bicep-Syntax.ps1 -------------------------------------------------------------------------------- /Scripts/ARM-To-Bicep-Syntax/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/ARM-To-Bicep-Syntax/ReadMe.md -------------------------------------------------------------------------------- /Scripts/Add-DDoSPlanToVNET/Add-DDoSPlanToVNET.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Add-DDoSPlanToVNET/Add-DDoSPlanToVNET.ps1 -------------------------------------------------------------------------------- /Scripts/Add-ResourceLocksToResourceGroups/Add-ResourceLocksToResourceGroups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Add-ResourceLocksToResourceGroups/Add-ResourceLocksToResourceGroups.ps1 -------------------------------------------------------------------------------- /Scripts/Add-VnetBGPCommunities/Add-VNETCommunities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Add-VnetBGPCommunities/Add-VNETCommunities.ps1 -------------------------------------------------------------------------------- /Scripts/AppGateway-WAF-ExclusionCount/AppGateway-WAF-ExclusionCount.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/AppGateway-WAF-ExclusionCount/AppGateway-WAF-ExclusionCount.ps1 -------------------------------------------------------------------------------- /Scripts/Application-Gateway-to-FrontDoor-Migration/AppGW-to-FrontDoor-audit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Application-Gateway-to-FrontDoor-Migration/AppGW-to-FrontDoor-audit.ps1 -------------------------------------------------------------------------------- /Scripts/Application-Gateway-to-FrontDoor-Migration/Apply-to-FrontDoor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Application-Gateway-to-FrontDoor-Migration/Apply-to-FrontDoor.ps1 -------------------------------------------------------------------------------- /Scripts/Application-Gateway-to-FrontDoor-Migration/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Application-Gateway-to-FrontDoor-Migration/ReadMe.md -------------------------------------------------------------------------------- /Scripts/Azure-Arc-SQLExtension/Deploy-ArcSQLExtension.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Azure-Arc-SQLExtension/Deploy-ArcSQLExtension.ps1 -------------------------------------------------------------------------------- /Scripts/Azure-Firewall-Policy-Audit/Azure-Firewall-Policy-Audit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Azure-Firewall-Policy-Audit/Azure-Firewall-Policy-Audit.ps1 -------------------------------------------------------------------------------- /Scripts/Azure-Firewall-Policy-Backup/Azure-Firewall-Policy-Backup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Azure-Firewall-Policy-Backup/Azure-Firewall-Policy-Backup.ps1 -------------------------------------------------------------------------------- /Scripts/Azure-Firewall-Policy-Backup/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Azure-Firewall-Policy-Backup/ReadMe.md -------------------------------------------------------------------------------- /Scripts/Azure-VM-Extension-Removal/Remove-VMExtension.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Azure-VM-Extension-Removal/Remove-VMExtension.ps1 -------------------------------------------------------------------------------- /Scripts/Azure-VM-Rename/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Azure-VM-Rename/ReadMe.md -------------------------------------------------------------------------------- /Scripts/Bulk-KeyVault-Secret-Add-AppGW/Add-Secret-AppGW.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Bulk-KeyVault-Secret-Add-AppGW/Add-Secret-AppGW.ps1 -------------------------------------------------------------------------------- /Scripts/Bulk-KeyVault-Secret-Add-AppGW/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Bulk-KeyVault-Secret-Add-AppGW/ReadMe.md -------------------------------------------------------------------------------- /Scripts/DomainController-DSC/DomainControllerConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/DomainController-DSC/DomainControllerConfig.ps1 -------------------------------------------------------------------------------- /Scripts/Enable-AzureToAzure-SiteRecovery/EnableASR.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Enable-AzureToAzure-SiteRecovery/EnableASR.ps1 -------------------------------------------------------------------------------- /Scripts/File-AutoMove/File-AutoMove.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/File-AutoMove/File-AutoMove.ps1 -------------------------------------------------------------------------------- /Scripts/File-AutoMove/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/File-AutoMove/ReadMe.md -------------------------------------------------------------------------------- /Scripts/IIS-DSC/IISConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/IIS-DSC/IISConfig.ps1 -------------------------------------------------------------------------------- /Scripts/KeyVault-Audit/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/KeyVault-Audit/ReadMe.md -------------------------------------------------------------------------------- /Scripts/KeyVault-Audit/keyvault-audit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/KeyVault-Audit/keyvault-audit.ps1 -------------------------------------------------------------------------------- /Scripts/Migrate-AppServices-ASE/Migrate-AppService-ASE.ps1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/Migrate-VM-AvailabilityZones/Migrate-VM-FromZonesToRegional.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Migrate-VM-AvailabilityZones/Migrate-VM-FromZonesToRegional.ps1 -------------------------------------------------------------------------------- /Scripts/Migrate-VM-AvailabilityZones/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Migrate-VM-AvailabilityZones/ReadMe.md -------------------------------------------------------------------------------- /Scripts/NSG-Audit/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/NSG-Audit/ReadMe.md -------------------------------------------------------------------------------- /Scripts/NSG-Audit/nsg-audit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/NSG-Audit/nsg-audit.ps1 -------------------------------------------------------------------------------- /Scripts/NSG-Audit/nsg-report-gen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/NSG-Audit/nsg-report-gen.ps1 -------------------------------------------------------------------------------- /Scripts/Prune-RecoverySnapshots-RestorePointCollections/Prune-RestorePoints.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Prune-RecoverySnapshots-RestorePointCollections/Prune-RestorePoints.ps1 -------------------------------------------------------------------------------- /Scripts/Remove-VMScaleSet/Remove-VMScaleSet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Remove-VMScaleSet/Remove-VMScaleSet.ps1 -------------------------------------------------------------------------------- /Scripts/Remove-VMsFromAVDHostPool/Remove-VMsFromAVDHostPool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Remove-VMsFromAVDHostPool/Remove-VMsFromAVDHostPool.ps1 -------------------------------------------------------------------------------- /Scripts/Remove-VNET-Peers/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Remove-VNET-Peers/ReadMe.md -------------------------------------------------------------------------------- /Scripts/Remove-VNET-Peers/Remove-VNET-Peers-DeploymentScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Remove-VNET-Peers/Remove-VNET-Peers-DeploymentScript.ps1 -------------------------------------------------------------------------------- /Scripts/Remove-VNET-Peers/Remove-VNET-Peers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Remove-VNET-Peers/Remove-VNET-Peers.ps1 -------------------------------------------------------------------------------- /Scripts/Restart-Vms/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Restart-Vms/ReadMe.md -------------------------------------------------------------------------------- /Scripts/Restart-Vms/restart-vms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Restart-Vms/restart-vms.ps1 -------------------------------------------------------------------------------- /Scripts/Seed-AzureFiles-AzCopy/AzCopy-AzureFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Seed-AzureFiles-AzCopy/AzCopy-AzureFiles.ps1 -------------------------------------------------------------------------------- /Scripts/Self-Signed-Certs/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Self-Signed-Certs/ReadMe.md -------------------------------------------------------------------------------- /Scripts/Self-Signed-Certs/Self-Signed-Certs-DeploymentScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Self-Signed-Certs/Self-Signed-Certs-DeploymentScript.ps1 -------------------------------------------------------------------------------- /Scripts/Self-Signed-Certs/Self-Signed-Certs-OpenSsl-Wildcards-KV.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Self-Signed-Certs/Self-Signed-Certs-OpenSsl-Wildcards-KV.ps1 -------------------------------------------------------------------------------- /Scripts/Self-Signed-Certs/Self-Signed-Certs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Self-Signed-Certs/Self-Signed-Certs.ps1 -------------------------------------------------------------------------------- /Scripts/Set-LogicAppStatus/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Set-LogicAppStatus/ReadMe.md -------------------------------------------------------------------------------- /Scripts/Set-LogicAppStatus/Set-LogicAppStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/Set-LogicAppStatus/Set-LogicAppStatus.ps1 -------------------------------------------------------------------------------- /Scripts/VMs-SharedManagedDisk-BackupReport/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/VMs-SharedManagedDisk-BackupReport/ReadMe.md -------------------------------------------------------------------------------- /Scripts/VMs-SharedManagedDisk-BackupReport/VMs-SharedManagedDisksBackupReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/VMs-SharedManagedDisk-BackupReport/VMs-SharedManagedDisksBackupReport.ps1 -------------------------------------------------------------------------------- /Scripts/VNET-IP-Segmentation/Setup-PSSubnetCarver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/VNET-IP-Segmentation/Setup-PSSubnetCarver.ps1 -------------------------------------------------------------------------------- /Scripts/VNET-IP-Segmentation/VNET-AddressSpace-Carve-DeploymentScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/VNET-IP-Segmentation/VNET-AddressSpace-Carve-DeploymentScript.ps1 -------------------------------------------------------------------------------- /Scripts/VNET-IP-Segmentation/VNET-AddressSpace-Carve.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/VNET-IP-Segmentation/VNET-AddressSpace-Carve.ps1 -------------------------------------------------------------------------------- /Scripts/VNET-IP-Segmentation/VNET-IP-Segmentation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/VNET-IP-Segmentation/VNET-IP-Segmentation.ps1 -------------------------------------------------------------------------------- /Scripts/VNET-IP-Segmentation/testvars.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/VNET-IP-Segmentation/testvars.ps1 -------------------------------------------------------------------------------- /Scripts/WVD-AutoScaling-Deploy/AVDAutoScaleRunbookVMSSBased.ps1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/WVD-AutoScaling-Deploy/CreateOrUpdateAzAutoAccount.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/WVD-AutoScaling-Deploy/CreateOrUpdateAzAutoAccount.ps1 -------------------------------------------------------------------------------- /Scripts/WVD-AutoScaling-Deploy/CreateOrUpdateAzLogicApp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/WVD-AutoScaling-Deploy/CreateOrUpdateAzLogicApp.ps1 -------------------------------------------------------------------------------- /Scripts/WVD-AutoScaling-Deploy/Customized-Autoscalling/AVDAutoScaleRunbookARMBased.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/WVD-AutoScaling-Deploy/Customized-Autoscalling/AVDAutoScaleRunbookARMBased.ps1 -------------------------------------------------------------------------------- /Scripts/WVD-AutoScaling-Deploy/Customized-Autoscalling/New.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/WVD-AutoScaling-Deploy/Customized-Autoscalling/New.ps1 -------------------------------------------------------------------------------- /Scripts/WVD-AutoScaling-Deploy/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/WVD-AutoScaling-Deploy/ReadMe.md -------------------------------------------------------------------------------- /Scripts/WVD-AutoScaling-Deploy/Set-LogicAppParameters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/WVD-AutoScaling-Deploy/Set-LogicAppParameters.ps1 -------------------------------------------------------------------------------- /Scripts/WVD-AutoScaling-Deploy/WVDAutoScaleRunbookARMBased.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/WVD-AutoScaling-Deploy/WVDAutoScaleRunbookARMBased.ps1 -------------------------------------------------------------------------------- /Scripts/WVD-AutoScaling-Deploy/runbookCreationTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/WVD-AutoScaling-Deploy/runbookCreationTemplate.json -------------------------------------------------------------------------------- /Scripts/WVD-HostPool-Key/WVD-HostPool-RegistrationKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/WVD-HostPool-Key/WVD-HostPool-RegistrationKey.ps1 -------------------------------------------------------------------------------- /Scripts/WVD-SessionHost-DSC/Configuration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/WVD-SessionHost-DSC/Configuration.ps1 -------------------------------------------------------------------------------- /Scripts/WVD-SessionHost-DSC/FSLogixInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/WVD-SessionHost-DSC/FSLogixInstall.ps1 -------------------------------------------------------------------------------- /Scripts/WVD-SessionHost-DSC/Functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/WVD-SessionHost-DSC/Functions.ps1 -------------------------------------------------------------------------------- /Scripts/WVD-SessionHost-DSC/Script-AddRdshServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/WVD-SessionHost-DSC/Script-AddRdshServer.ps1 -------------------------------------------------------------------------------- /Scripts/WebApp-Inbound-IPRestrictions/Manage-Inbound-AppService-IPRestrictions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/WebApp-Inbound-IPRestrictions/Manage-Inbound-AppService-IPRestrictions.ps1 -------------------------------------------------------------------------------- /Scripts/WebApp-Inbound-IPRestrictions/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Scripts/WebApp-Inbound-IPRestrictions/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/AppGW-Internal-APIM/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/AppGW-Internal-APIM/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ArcGIS-Deploy-Simple.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ArcGIS-Deploy-Simple.bicep -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/ArcGIS.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/ArcGIS.psd1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/ArcGIS.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/ArcGIS.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStore/ArcGIS_DataStore.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStore/ArcGIS_DataStore.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStore/ArcGIS_DataStore.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStore/ArcGIS_DataStore.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStoreBackup/ArcGIS_DataStoreBackup.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStoreBackup/ArcGIS_DataStoreBackup.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStoreBackup/ArcGIS_DataStoreBackup.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStoreBackup/ArcGIS_DataStoreBackup.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStoreItem/ArcGIS_DataStoreItem.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStoreItem/ArcGIS_DataStoreItem.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStoreItem/ArcGIS_DataStoreItem.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStoreItem/ArcGIS_DataStoreItem.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStoreUpgrade/ArcGIS_DataStoreUpgrade.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStoreUpgrade/ArcGIS_DataStoreUpgrade.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStoreUpgrade/ArcGIS_DataStoreUpgrade.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStoreUpgrade/ArcGIS_DataStoreUpgrade.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStore_TLS/ArcGIS_DataStore_TLS.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStore_TLS/ArcGIS_DataStore_TLS.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStore_TLS/ArcGIS_DataStore_TLS.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_DataStore_TLS/ArcGIS_DataStore_TLS.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Disk/ArcGIS_Disk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Disk/ArcGIS_Disk.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Disk/ArcGIS_Disk.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Disk/ArcGIS_Disk.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_EGDB/ArcGIS_EGDB.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_EGDB/ArcGIS_EGDB.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_EGDB/ArcGIS_EGDB.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_EGDB/ArcGIS_EGDB.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_EGDB/create_connection_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_EGDB/create_connection_file.py -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_EGDB/create_connection_file_3x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_EGDB/create_connection_file_3x.py -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_EGDB/enable_enterprise_gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_EGDB/enable_enterprise_gdb.py -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_EGDB/enable_enterprise_gdb_3x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_EGDB/enable_enterprise_gdb_3x.py -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Federation/ArcGIS_Federation.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Federation/ArcGIS_Federation.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Federation/ArcGIS_Federation.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Federation/ArcGIS_Federation.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_FileShare/ArcGIS_FileShare.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_FileShare/ArcGIS_FileShare.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_FileShare/ArcGIS_FileShare.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_FileShare/ArcGIS_FileShare.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_GeoEvent/ArcGIS_GeoEvent.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_GeoEvent/ArcGIS_GeoEvent.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_GeoEvent/ArcGIS_GeoEvent.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_GeoEvent/ArcGIS_GeoEvent.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_IIS_TLS/ArcGIS_IIS_TLS.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_IIS_TLS/ArcGIS_IIS_TLS.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_IIS_TLS/ArcGIS_IIS_TLS.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_IIS_TLS/ArcGIS_IIS_TLS.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Install/ArcGIS_Install.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Install/ArcGIS_Install.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Install/ArcGIS_Install.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Install/ArcGIS_Install.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_InstallMsiPackage/ArcGIS_InstallMsiPackage.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_InstallMsiPackage/ArcGIS_InstallMsiPackage.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_InstallMsiPackage/ArcGIS_InstallMsiPackage.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_InstallMsiPackage/ArcGIS_InstallMsiPackage.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_InstallPatch/ArcGIS_InstallPatch.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_InstallPatch/ArcGIS_InstallPatch.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_InstallPatch/ArcGIS_InstallPatch.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_InstallPatch/ArcGIS_InstallPatch.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_License/ArcGIS_License.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_License/ArcGIS_License.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_License/ArcGIS_License.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_License/ArcGIS_License.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_LogHarvester/ArcGIS_LogHarvester.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_LogHarvester/ArcGIS_LogHarvester.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_LogHarvester/ArcGIS_LogHarvester.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_LogHarvester/ArcGIS_LogHarvester.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_LogHarvester/LogHarvesterSample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_LogHarvester/LogHarvesterSample.xml -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_LogHarvester/LogHarvesterSample2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_LogHarvester/LogHarvesterSample2.xml -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_LogHarvester/log4j.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_LogHarvester/log4j.dtd -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_MissionServer/ArcGIS_MissionServer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_MissionServer/ArcGIS_MissionServer.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_MissionServer/ArcGIS_MissionServer.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_MissionServer/ArcGIS_MissionServer.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_MissionServerSettings/ArcGIS_MissionServerSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_MissionServerSettings/ArcGIS_MissionServerSettings.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_MissionServerSettings/ArcGIS_MissionServerSettings.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_MissionServerSettings/ArcGIS_MissionServerSettings.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_MissionServerUpgrade/ArcGIS_MissionServerUpgrade.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_MissionServerUpgrade/ArcGIS_MissionServerUpgrade.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_MissionServerUpgrade/ArcGIS_MissionServerUpgrade.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_MissionServerUpgrade/ArcGIS_MissionServerUpgrade.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_NotebookPostInstall/ArcGIS_NotebookPostInstall.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_NotebookPostInstall/ArcGIS_NotebookPostInstall.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_NotebookPostInstall/ArcGIS_NotebookPostInstall.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_NotebookPostInstall/ArcGIS_NotebookPostInstall.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_NotebookServer/ArcGIS_NotebookServer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_NotebookServer/ArcGIS_NotebookServer.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_NotebookServer/ArcGIS_NotebookServer.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_NotebookServer/ArcGIS_NotebookServer.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_NotebookServerSettings/ArcGIS_NotebookServerSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_NotebookServerSettings/ArcGIS_NotebookServerSettings.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_NotebookServerSettings/ArcGIS_NotebookServerSettings.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_NotebookServerSettings/ArcGIS_NotebookServerSettings.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_NotebookServerUpgrade/ArcGIS_NotebookServerUpgrade.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_NotebookServerUpgrade/ArcGIS_NotebookServerUpgrade.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_NotebookServerUpgrade/ArcGIS_NotebookServerUpgrade.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_NotebookServerUpgrade/ArcGIS_NotebookServerUpgrade.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_PendingReboot/ArcGIS_PendingReboot.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_PendingReboot/ArcGIS_PendingReboot.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_PendingReboot/ArcGIS_PendingReboot.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_PendingReboot/ArcGIS_PendingReboot.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Portal/ArcGIS_Portal.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Portal/ArcGIS_Portal.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Portal/ArcGIS_Portal.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Portal/ArcGIS_Portal.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_PortalSettings/ArcGIS_PortalSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_PortalSettings/ArcGIS_PortalSettings.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_PortalSettings/ArcGIS_PortalSettings.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_PortalSettings/ArcGIS_PortalSettings.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_PortalUnregister/ArcGIS_PortalUnregister.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_PortalUnregister/ArcGIS_PortalUnregister.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_PortalUnregister/ArcGIS_PortalUnregister.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_PortalUnregister/ArcGIS_PortalUnregister.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_PortalUpgrade/ArcGIS_PortalUpgrade.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_PortalUpgrade/ArcGIS_PortalUpgrade.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_PortalUpgrade/ArcGIS_PortalUpgrade.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_PortalUpgrade/ArcGIS_PortalUpgrade.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Portal_TLS/ArcGIS_Portal_TLS.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Portal_TLS/ArcGIS_Portal_TLS.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Portal_TLS/ArcGIS_Portal_TLS.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Portal_TLS/ArcGIS_Portal_TLS.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_RemoteFile/ArcGIS_RemoteFile.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_RemoteFile/ArcGIS_RemoteFile.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_RemoteFile/ArcGIS_RemoteFile.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_RemoteFile/ArcGIS_RemoteFile.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Server/ArcGIS_Server.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Server/ArcGIS_Server.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Server/ArcGIS_Server.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Server/ArcGIS_Server.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_ServerSettings/ArcGIS_ServerSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_ServerSettings/ArcGIS_ServerSettings.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_ServerSettings/ArcGIS_ServerSettings.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_ServerSettings/ArcGIS_ServerSettings.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_ServerUpgrade/ArcGIS_ServerUpgrade.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_ServerUpgrade/ArcGIS_ServerUpgrade.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_ServerUpgrade/ArcGIS_ServerUpgrade.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_ServerUpgrade/ArcGIS_ServerUpgrade.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Server_RegisterDirectories/ArcGIS_Server_RegisterDirectories.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Server_RegisterDirectories/ArcGIS_Server_RegisterDirectories.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Server_RegisterDirectories/ArcGIS_Server_RegisterDirectories.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Server_RegisterDirectories/ArcGIS_Server_RegisterDirectories.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Server_Service/ArcGIS_Server_Service.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Server_Service/ArcGIS_Server_Service.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Server_Service/ArcGIS_Server_Service.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Server_Service/ArcGIS_Server_Service.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Server_TLS/ArcGIS_Server_TLS.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Server_TLS/ArcGIS_Server_TLS.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Server_TLS/ArcGIS_Server_TLS.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Server_TLS/ArcGIS_Server_TLS.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Service_Account/ArcGIS_Service_Account.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Service_Account/ArcGIS_Service_Account.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Service_Account/ArcGIS_Service_Account.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_Service_Account/ArcGIS_Service_Account.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_TLSCertificateFileImport/ArcGIS_TLSCertificateFileImport.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_TLSCertificateFileImport/ArcGIS_TLSCertificateFileImport.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_TLSCertificateFileImport/ArcGIS_TLSCertificateFileImport.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_TLSCertificateFileImport/ArcGIS_TLSCertificateFileImport.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_TLSCertificateImport/ArcGIS_TLSCertificateImport.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_TLSCertificateImport/ArcGIS_TLSCertificateImport.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_TLSCertificateImport/ArcGIS_TLSCertificateImport.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_TLSCertificateImport/ArcGIS_TLSCertificateImport.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_WaitForComponent/ArcGIS_WaitForComponent.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_WaitForComponent/ArcGIS_WaitForComponent.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_WaitForComponent/ArcGIS_WaitForComponent.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_WaitForComponent/ArcGIS_WaitForComponent.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_WebAdaptor/ArcGIS_WebAdaptor.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_WebAdaptor/ArcGIS_WebAdaptor.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_WebAdaptor/ArcGIS_WebAdaptor.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_WebAdaptor/ArcGIS_WebAdaptor.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_WindowsService/ArcGIS_WindowsService.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_WindowsService/ArcGIS_WindowsService.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_WindowsService/ArcGIS_WindowsService.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_WindowsService/ArcGIS_WindowsService.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_xDisk/ArcGIS_xDisk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_xDisk/ArcGIS_xDisk.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_xDisk/ArcGIS_xDisk.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_xDisk/ArcGIS_xDisk.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_xFirewall/ArcGIS_xFirewall.Schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_xFirewall/ArcGIS_xFirewall.Schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_xFirewall/ArcGIS_xFirewall.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_xFirewall/ArcGIS_xFirewall.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_xSmbShare/ArcGIS_xSmbShare.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_xSmbShare/ArcGIS_xSmbShare.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_xSmbShare/ArcGIS_xSmbShare.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_xSmbShare/ArcGIS_xSmbShare.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_xWindowsUpdate/ArcGIS_xWindowsUpdate.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_xWindowsUpdate/ArcGIS_xWindowsUpdate.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_xWindowsUpdate/ArcGIS_xWindowsUpdate.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/DSCResources/ArcGIS_xWindowsUpdate/ArcGIS_xWindowsUpdate.schema.mof -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/Modules/ArcGIS.Common/ArcGIS.Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ArcGIS/Modules/ArcGIS.Common/ArcGIS.Common.psm1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/BaseDeploymentSingleTierConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/BaseDeploymentSingleTierConfiguration.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/DataStoreConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/DataStoreConfiguration.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/DataStoreUpgradeConfigure.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/DataStoreUpgradeConfigure.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/DataStoreUpgradeInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/DataStoreUpgradeInstall.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/DataStoreUpgradePreInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/DataStoreUpgradePreInstall.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/DiskConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/DiskConfiguration.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/FileShareConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/FileShareConfiguration.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/GISServerMultiTierConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/GISServerMultiTierConfiguration.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/GISServerSingleTierConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/GISServerSingleTierConfiguration.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/GraphDataStoreConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/GraphDataStoreConfiguration.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/MissionServerMultiTierConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/MissionServerMultiTierConfiguration.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/MissionServerSingleTierConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/MissionServerSingleTierConfiguration.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/NotebookServerSingleTierConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/NotebookServerSingleTierConfiguration.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ObjectDataStoreConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ObjectDataStoreConfiguration.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/PortalConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/PortalConfiguration.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/PortalPostUpgrade.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/PortalPostUpgrade.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/PortalUpgrade.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/PortalUpgrade.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/SQLServerConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/SQLServerConfiguration.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ServerConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ServerConfiguration.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ServerUpgrade.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/ServerUpgrade.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/SpatiotemporalBigDataStoreConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/SpatiotemporalBigDataStoreConfiguration.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/TileCacheDataStoreConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/TileCacheDataStoreConfiguration.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/UpgradeVMFileShareConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ESRI-11.1-DSC-Modified/UpgradeVMFileShareConfiguration.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/arcgis-root.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/arcgis-root.bicep -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/datadsc.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/datadsc.bicep -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/dnsZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/dnsZone.bicep -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/esri-appgw.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/esri-appgw.bicep -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/keyvault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/keyvault.bicep -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/portaldsc.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/portaldsc.bicep -------------------------------------------------------------------------------- /Standard-Deployments/ArcGIS-Deployment/serverdsc.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/ArcGIS-Deployment/serverdsc.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Azure-Firewall-QueryPack/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Azure-Firewall-QueryPack/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/Azure-Firewall-QueryPack/querypack.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Azure-Firewall-QueryPack/querypack.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Azure-IaaS-QueryPack/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Azure-IaaS-QueryPack/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/Azure-IaaS-QueryPack/query.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Azure-IaaS-QueryPack/query.bicep -------------------------------------------------------------------------------- /Standard-Deployments/AzureAI-Sandbox/AzureAI-Sandbox.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/AzureAI-Sandbox/AzureAI-Sandbox.bicep -------------------------------------------------------------------------------- /Standard-Deployments/AzureAI-Sandbox/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/AzureAI-Sandbox/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/AzureAI-Sandbox/network-resources.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/AzureAI-Sandbox/network-resources.bicep -------------------------------------------------------------------------------- /Standard-Deployments/AzureAI-Sandbox/openAI-resources.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/AzureAI-Sandbox/openAI-resources.bicep -------------------------------------------------------------------------------- /Standard-Deployments/AzureAI-Sandbox/sample.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/AzureAI-Sandbox/sample.bicep -------------------------------------------------------------------------------- /Standard-Deployments/CAF-Landing-Zone-MG/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/CAF-Landing-Zone-MG/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/CAF-Landing-Zone-MG/caf-mg-deploy.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/CAF-Landing-Zone-MG/caf-mg-deploy.bicep -------------------------------------------------------------------------------- /Standard-Deployments/CAF-Landing-Zone-MG/hubNetworking.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/CAF-Landing-Zone-MG/hubNetworking.bicep -------------------------------------------------------------------------------- /Standard-Deployments/CAF-Landing-Zone-MG/spokeNetworking.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/CAF-Landing-Zone-MG/spokeNetworking.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Cisco-FTDv-VMSS/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Cisco-FTDv-VMSS/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/Cisco-FTDv-VMSS/ftdv-vmss.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Cisco-FTDv-VMSS/ftdv-vmss.bicep -------------------------------------------------------------------------------- /Standard-Deployments/DomainController/DomainController.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/DomainController/DomainController.bicep -------------------------------------------------------------------------------- /Standard-Deployments/DomainController/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/DomainController/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/DomainController/nicDns.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/DomainController/nicDns.bicep -------------------------------------------------------------------------------- /Standard-Deployments/DomainController/otherDCs.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/DomainController/otherDCs.bicep -------------------------------------------------------------------------------- /Standard-Deployments/DomainController/vmPropertiesBuilder.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/DomainController/vmPropertiesBuilder.bicep -------------------------------------------------------------------------------- /Standard-Deployments/IIS-Server/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/IIS-Server/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/IIS-Server/iis-server.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/IIS-Server/iis-server.bicep -------------------------------------------------------------------------------- /Standard-Deployments/LogicApp-Standard/LogicApp-Standard.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/LogicApp-Standard/LogicApp-Standard.bicep -------------------------------------------------------------------------------- /Standard-Deployments/LogicApp-Standard/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/LogicApp-Standard/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/LogicApp-Standard/privateLink.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/LogicApp-Standard/privateLink.bicep -------------------------------------------------------------------------------- /Standard-Deployments/LogicApp-Standard/subnetProperties.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/LogicApp-Standard/subnetProperties.bicep -------------------------------------------------------------------------------- /Standard-Deployments/LogicApp-Standard/subnetSetup.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/LogicApp-Standard/subnetSetup.bicep -------------------------------------------------------------------------------- /Standard-Deployments/PSSubnetCarver/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/PSSubnetCarver/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/PSSubnetCarver/psSubnetCarver.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/PSSubnetCarver/psSubnetCarver.bicep -------------------------------------------------------------------------------- /Standard-Deployments/PaloAlto-HA-Active_Active/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/PaloAlto-HA-Active_Active/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/PaloAlto-HA-Active_Active/bootstrapxml.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/PaloAlto-HA-Active_Active/bootstrapxml.bicep -------------------------------------------------------------------------------- /Standard-Deployments/PaloAlto-HA-Active_Active/init-cfg.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/PaloAlto-HA-Active_Active/init-cfg.bicep -------------------------------------------------------------------------------- /Standard-Deployments/PaloAlto-HA-Active_Active/paloAlto-ha-aa.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/PaloAlto-HA-Active_Active/paloAlto-ha-aa.bicep -------------------------------------------------------------------------------- /Standard-Deployments/PaloAlto-HA-Active_Active/paloAlto-ha-vmss.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/PaloAlto-HA-Active_Active/paloAlto-ha-vmss.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Private-Synapse/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Private-Synapse/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/Private-Synapse/Script/Approve-Private.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Private-Synapse/Script/Approve-Private.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/Private-Synapse/dnsrecordLoop.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Private-Synapse/dnsrecordLoop.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Private-Synapse/synapse-private.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Private-Synapse/synapse-private.bicep -------------------------------------------------------------------------------- /Standard-Deployments/SQLMI-Scheduled-Scaling/ReadMe.md: -------------------------------------------------------------------------------- 1 | ## Work in Progress -------------------------------------------------------------------------------- /Standard-Deployments/SQLMI-Scheduled-Scaling/Runbook.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/SQLMI-Scheduled-Scaling/Runbook.ps1 -------------------------------------------------------------------------------- /Standard-Deployments/Simple-AVD-Scaleset/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Simple-AVD-Scaleset/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/Simple-AVD-Scaleset/avd-scaleset.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Simple-AVD-Scaleset/avd-scaleset.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Spoke-Base-Networking-Deploy/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Spoke-Base-Networking-Deploy/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/Spoke-Base-Networking-Deploy/Spoke-Blueprint.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Spoke-Base-Networking-Deploy/Spoke-Blueprint.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Spoke-Base-Networking-Deploy/existingVnet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Spoke-Base-Networking-Deploy/existingVnet.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Spoke-Base-Networking-Deploy/hubPeer.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Spoke-Base-Networking-Deploy/hubPeer.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Spoke-Base-Networking-Deploy/remoteRtAdd.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Spoke-Base-Networking-Deploy/remoteRtAdd.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Spoke-Base-Networking-Deploy/removepeers.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Spoke-Base-Networking-Deploy/removepeers.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Spoke-Base-Networking-Deploy/vnet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Spoke-Base-Networking-Deploy/vnet.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Three-Tier-App/three-tier-app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Three-Tier-App/three-tier-app.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Three-Tier-App/vm.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Three-Tier-App/vm.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Three-Tier-App/vnet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Three-Tier-App/vnet.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Update-VNET-DNS/dnsServerAdd.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Update-VNET-DNS/dnsServerAdd.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Update-VNET-DNS/setVnet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Update-VNET-DNS/setVnet.bicep -------------------------------------------------------------------------------- /Standard-Deployments/VMSS-Log-Forwarder/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/VMSS-Log-Forwarder/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/VMSS-Log-Forwarder/cef-vmss-forwarder.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/VMSS-Log-Forwarder/cef-vmss-forwarder.bicep -------------------------------------------------------------------------------- /Standard-Deployments/VMSS-Log-Forwarder/lb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/VMSS-Log-Forwarder/lb.bicep -------------------------------------------------------------------------------- /Standard-Deployments/VMSS-Log-Forwarder/publicIp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/VMSS-Log-Forwarder/publicIp.bicep -------------------------------------------------------------------------------- /Standard-Deployments/VMSS-Log-Forwarder/storage.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/VMSS-Log-Forwarder/storage.bicep -------------------------------------------------------------------------------- /Standard-Deployments/VMSS-Log-Forwarder/vmss.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/VMSS-Log-Forwarder/vmss.bicep -------------------------------------------------------------------------------- /Standard-Deployments/WVD-HostPool/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/WVD-HostPool/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/WVD-HostPool/wvd-hostpool-vmss.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/WVD-HostPool/wvd-hostpool-vmss.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Zero-Trust-ML-Workspace/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Zero-Trust-ML-Workspace/ReadMe.md -------------------------------------------------------------------------------- /Standard-Deployments/Zero-Trust-ML-Workspace/avd.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Zero-Trust-ML-Workspace/avd.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Zero-Trust-ML-Workspace/dnsrecordLoop.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Zero-Trust-ML-Workspace/dnsrecordLoop.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Zero-Trust-ML-Workspace/zeror-trust-ml-workspace-integrated.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Zero-Trust-ML-Workspace/zeror-trust-ml-workspace-integrated.bicep -------------------------------------------------------------------------------- /Standard-Deployments/Zero-Trust-ML-Workspace/zeror-trust-ml-workspace-sandbox.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukearp/Azure-IAC-Bicep/HEAD/Standard-Deployments/Zero-Trust-ML-Workspace/zeror-trust-ml-workspace-sandbox.bicep --------------------------------------------------------------------------------