module app ‘../../../projects/my/application/app.bicep’ = {
name: ‘app’
}
module test ‘../../../projects/my/application/test.bicep’ = {
name: ‘test’
}
module sample ‘../../../projects/my/application/sample.bicep’ = {
name: ‘sample’
params {
p1: ‘p1’
}
}
Can I provision just the sample module somehow?
az deployment group create –resource-group ${{variables.rg}} –template-file ${{variables.Templatefile}
using above command with azure devops pipeline unable deploy particular module.
itlumeesatish B is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.