From f83f30fccfec0e4a204d0fbdee21a7bcb6729ffb Mon Sep 17 00:00:00 2001 From: Philip Gai Date: Fri, 5 Nov 2021 08:19:23 +0000 Subject: [PATCH] Explicitly call out dependency --- infrastructure/repost-app/repost-app.bicep | 3 +++ 1 file changed, 3 insertions(+) diff --git a/infrastructure/repost-app/repost-app.bicep b/infrastructure/repost-app/repost-app.bicep index 300e957..5516759 100644 --- a/infrastructure/repost-app/repost-app.bicep +++ b/infrastructure/repost-app/repost-app.bicep @@ -44,4 +44,7 @@ module appServiceModule 'modules/appservice-module.bicep' = { cosmosAccountName: cosmosAccountName siteName: siteName } + dependsOn: [ + cosmosModule + ] }