diff --git a/README.md b/README.md index 38da3141..be510271 100644 --- a/README.md +++ b/README.md @@ -125,6 +125,15 @@ APP_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: diff --git a/azuredeploy.json b/azuredeploy.json index cef56996..169a8910 100644 --- a/azuredeploy.json +++ b/azuredeploy.json @@ -5,7 +5,7 @@ "_generator": { "name": "bicep", "version": "0.24.24.22086", - "templateHash": "7201082717854836225" + "templateHash": "18430297187626944941" } }, "parameters": { @@ -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))]" ] } ], diff --git a/bicep/main.bicep b/bicep/main.bicep index e0b0cf99..d18161b2 100644 --- a/bicep/main.bicep +++ b/bicep/main.bicep @@ -1817,6 +1817,9 @@ module fluxConfiguration 'br/public:avm/res/kubernetes-configuration/flux-config } dependsOn: [ app_config + espool1 + espool2 + espool3 ] }