simplify/merge workflow

This commit is contained in:
Chris Kruining 2024-11-18 14:25:15 +01:00
parent 516c744a72
commit 43b161b413
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
6 changed files with 29 additions and 52 deletions

View file

@ -6,6 +6,9 @@ param locationAbbreviation string
param location string
param environment string
param projectName string
param version string
@secure()
param registryUrl string
param deployedAt string = utcNow('yyyyMMdd')
var context = {
@ -42,6 +45,7 @@ module app 'app.bicep' = {
scope: calqueResourceGroup
params: {
context: context
registry: registry.outputs.registry
version: version
registryUrl: registryUrl
}
}