Skip to content

Commit

Permalink
Revert "use parent property in child resources"
Browse files Browse the repository at this point in the history
This reverts commit 5537040.
  • Loading branch information
MaxHorstmann committed Jul 6, 2023
1 parent 5537040 commit e3e2bbc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/prow/cluster/prow-cluster.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,15 @@ resource sa 'Microsoft.Storage/storageAccounts@2022-05-01' = {
}

resource prowlogsContainer 'Microsoft.Storage/storageAccounts/blobServices/containers@2022-05-01' = {
name: '${parent.name}/default/prow-logs'
name: '${sa.name}/default/prow-logs'
}

resource statusRecocilerContainer 'Microsoft.Storage/storageAccounts/blobServices/containers@2022-05-01' = {
name: '${parent.name}/default/status-reconciler'
name: '${sa.name}/default/status-reconciler'
}

resource tideContainer 'Microsoft.Storage/storageAccounts/blobServices/containers@2022-05-01' = {
name: '${parent.name}/default/tide'
name: '${sa.name}/default/tide'
}

module clusterIngressFrontDoor 'prow-frontdoor.bicep' = {
Expand Down

0 comments on commit e3e2bbc

Please sign in to comment.