Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/azd-template-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches:
- main
pull_request:
branches:
- main

permissions:
contents: read
Expand All @@ -29,6 +32,8 @@ jobs:
AZURE_ENV_NAME: ${{ vars.AZURE_ENV_NAME }}
AZURE_LOCATION: ${{ vars.AZURE_LOCATION }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
fabricCapacityMode: none
fabricCapacityAdmins: 'v-prisinghal@MngEnvMCAP993385.onmicrosoft.com'

- name: print result
run: cat ${{ steps.validation.outputs.resultFile }}
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ This accelerator extends the [AI Landing Zone](https://github.com/Azure/ai-landi
<!-------------------------------------------->
<!-- KEY FEATURES -->
<!-------------------------------------------->

## Features


### Key features
<details open>
<summary>Click to learn more about the key features this solution enables</summary>
Expand All @@ -73,6 +77,9 @@ This accelerator extends the [AI Landing Zone](https://github.com/Azure/ai-landi
<!-------------------------------------------->
<!-- QUICK DEPLOY -->
<!-------------------------------------------->

## Getting Started

<h2><img src="./docs/images/readme/quick-deploy.png" width="48" />
Quick deploy
</h2>
Expand Down Expand Up @@ -213,6 +220,11 @@ After deployment, you'll have a complete, enterprise-ready platform that unifies
<!------------------------------------------>
<!-- SUPPORTING DOCUMENTATION -->
<!------------------------------------------>


## Guidance


<h2><img src="./docs/images/readme/supporting-documentation.png" width="48" />
Supporting documentation
</h2>
Expand Down Expand Up @@ -251,6 +263,10 @@ Supporting documentation

</details>


## Resources


### Cross references
Check out similar solution accelerators
| Solution Accelerator | Description |
Expand Down
2 changes: 1 addition & 1 deletion infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ param purviewCollectionName string = ''
// AI LANDING ZONE DEPLOYMENT
// ========================================

module aiLandingZone '../submodules/ai-landing-zone/bicep/deploy/main.bicep' = {
module aiLandingZone '../submodules/ai-landing-zone/bicep/infra/main.bicep' = {
name: 'ai-landing-zone'
params: {
deployToggles: deployToggles
Expand Down
5 changes: 3 additions & 2 deletions infra/main.bicepparam
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ param aiSearchAdditionalAccessObjectIds = []
// - Full setup: fabricCapacityPreset='create', fabricWorkspacePreset='create'
// - No Fabric: fabricCapacityPreset='none', fabricWorkspacePreset='none'
// - BYO both: fabricCapacityPreset='byo', fabricWorkspacePreset='byo'
var fabricCapacityPreset = 'create'
var fabricCapacityPreset = readEnvironmentVariable('fabricCapacityMode', 'create')
var fabricWorkspacePreset = fabricCapacityPreset

// Legacy toggle retained for back-compat with older docs/scripts
Expand All @@ -118,7 +118,8 @@ param fabricWorkspaceName = '' // optional (helpful for naming/UX)
param fabricCapacitySku = 'F8'

// Fabric capacity admin members (email addresses or object IDs).
param fabricCapacityAdmins = []
var fabricAdminValue = readEnvironmentVariable('fabricCapacityAdmins', '')
param fabricCapacityAdmins = empty(fabricAdminValue) ? [] : [fabricAdminValue]

// ========================================
// PURVIEW PARAMETERS (Optional)
Expand Down
Loading