Skip to content

Commit

Permalink
Updated the readme and ensured dependency of espools are completed pr…
Browse files Browse the repository at this point in the history
…ior to loading software. (#35)
  • Loading branch information
danielscholl authored Jan 23, 2024
1 parent b27ad67 commit 23024b0
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,15 @@ APP_NAME=<your_ad_application_name>
azd env set AZURE_CLIENT_ID $(az ad app list --display-name $APP_NAME --query "[].appId" -otsv)
```

3. Set Software Repository Location:

Configure the location of where the software declaration is.

```bash
azd env set SOFTWARE_REPOSITORY https://github.com/azure/osdu-developer
azd env set SOFTWARE_BRANCH main
```

### Optional Feature Flags

Customize your resources by enabling these optional features based on your specific requirements:
Expand Down
7 changes: 5 additions & 2 deletions azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"_generator": {
"name": "bicep",
"version": "0.24.24.22086",
"templateHash": "7201082717854836225"
"templateHash": "18430297187626944941"
}
},
"parameters": {
Expand Down Expand Up @@ -23456,7 +23456,10 @@
},
"dependsOn": [
"[resourceId('Microsoft.Resources/deployments', format('{0}-appconfig', variables('serviceLayerConfig').name))]",
"[resourceId('Microsoft.Resources/deployments', format('aks-{0}', variables('serviceLayerConfig').name))]"
"[resourceId('Microsoft.Resources/deployments', format('aks-{0}', variables('serviceLayerConfig').name))]",
"[resourceId('Microsoft.Resources/deployments', format('{0}-espool1', variables('serviceLayerConfig').name))]",
"[resourceId('Microsoft.Resources/deployments', format('{0}-espool2', variables('serviceLayerConfig').name))]",
"[resourceId('Microsoft.Resources/deployments', format('{0}-espool3', variables('serviceLayerConfig').name))]"
]
}
],
Expand Down
3 changes: 3 additions & 0 deletions bicep/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -1817,6 +1817,9 @@ module fluxConfiguration 'br/public:avm/res/kubernetes-configuration/flux-config
}
dependsOn: [
app_config
espool1
espool2
espool3
]
}

Expand Down

0 comments on commit 23024b0

Please sign in to comment.