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

Region Resource Infrastructure Pipeline #894

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 2 additions & 2 deletions dev-infrastructure/configurations/region.tmpl.bicepparam
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ param regionalDNSSubdomain = '{{ .regionalDNSSubdomain }}'

// maestro
param maestroEventGridNamespacesName = '{{ .maestro.eventGrid.name }}'
param maestroEventGridMaxClientSessionsPerAuthName = {{ .maestro.eventGrid.maxClientSessionsPerAuthName }}
param maestroEventGridPrivate = {{ .maestro.eventGrid.private }}
param maestroEventGridMaxClientSessionsPerAuthName = any('{{ .maestro.eventGrid.maxClientSessionsPerAuthName }}')
param maestroEventGridPrivate = any('{{ .maestro.eventGrid.private }}')
4 changes: 2 additions & 2 deletions dev-infrastructure/region-pipeline.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
serviceGroup: Microsoft.Azure.ARO.Test
serviceGroup: Microsoft.Azure.ARO.HCP.Region
rolloutName: Region Rollout
resourceGroups:
- name: {{ .regionRG }}
Expand All @@ -10,7 +10,7 @@ resourceGroups:
parameters: configurations/region.tmpl.bicepparam
- name: metrics-infra
action: ARM
template: modules/modules/metrics.bicep
template: modules/metrics/metrics.bicep
parameters: configurations/metrics.tmpl.bicepparam
dependsOn:
- region
2 changes: 1 addition & 1 deletion dev-infrastructure/templates/region.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ module regionalZoneDelegation '../modules/dns/zone-delegation.bicep' = {
params: {
childZoneName: regionalDNSSubdomain
childZoneNameservers: regionalZone.properties.nameServers
parentZoneName: baseDNSZoneName
parentZoneName: regionalZone.name
}
}

Expand Down
Loading