Azure / missionlz

Azure landing zone for SCCA-compliant organizations.
MIT License
240 stars 136 forks source link

New Add-On: single click deployment for ESRI PoC #927

Open jamasten opened 6 months ago

jamasten commented 6 months ago

Develop a single click deployment that includes:

### Tasks
- [ ] Add MLZ
- [ ] Add AVD
- [ ] AVD: Target the marketplace image for ArcGIS Pro (server OS) with Marketplace Terms
- [ ] AVD: Add Azure Files Premium for FSLogix (Entra joined hosts)
- [ ] AVD: Update friendly names: workspace = "ArcGIS Proof of Concept", desktop = "ArcGIS Pro on AVD"
- [ ] Add ESRI Enterprise Single Tier
- [ ] ESRI Enterprise Single Tier: Add Azure Files Premium file share for ESRI files
jamasten commented 3 months ago

For marketplace terms:

# Accept Terms for Image Usage
$Terms = Get-AzMarketplaceTerms -Publisher $ImagePublisher -Product $ImageOffer -Name $ImageSku -ErrorAction 'SilentlyContinue'
if(!($Terms.Accepted))
{
    Set-AzMarketplaceTerms `
        -Publisher $ImagePublisher `
        -Product $ImageOffer `
        -Name $ImageSku `
        -Accept | Out-Null
}