Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EES-5446 - minor tweaks to fix pipeline after mere conflicts resolved #5451

Merged
merged 1 commit into from
Dec 11, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ module dataProcessorFunctionAppModule '../../components/functionApp.bicep' = {
subnetId: outboundVnetSubnet.id
privateEndpointSubnetId: inboundVnetSubnet.id
publicNetworkAccessEnabled: true
functionAppEndpointFirewallRules: functionAppFirewallRules
functionAppFirewallRules: functionAppFirewallRules
entraIdAuthentication: {
appRegistrationClientId: dataProcessorAppRegistrationClientId
allowedClientIds: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ jobs:
parameterFile: $(paramFile)
deploySharedPrivateDnsZones: false
deployPsqlFlexibleServer: false
deployContainerApp: true
deployContainerApp: false
deployDataProcessor: false
deployAlerts: false
dataProcessorExists: true
dataProcessorExists: false

- task: AzureCLI@2
displayName: Check if Data Processor Function App exists
Expand All @@ -66,6 +67,7 @@ jobs:
deploySharedPrivateDnsZones: $(deploySharedPrivateDnsZones)
deployPsqlFlexibleServer: $(deployPsqlFlexibleServer)
deployContainerApp: $(deployContainerApp)
deployDataProcessor: $(deployDataProcessor)
deployAlerts: $(deployAlerts)
dataProcessorExists: $(dataProcessorExists)

Expand Down
Loading