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

AKS Service Target & template #1543

Closed
wants to merge 25 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
Adds TODO for adding resource diagnostics
  • Loading branch information
wbreza committed Feb 28, 2023
commit 612b0013a126a668f8271f291610750ffced1b73
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,9 @@ var aksDiagCategories = [
'guard'
]

// TODO: Update diagnostics to be its own module
// Blocking issue: https://github.com/Azure/bicep/issues/622
// Unable to pass in a `resource` scope or unable to use string interpolation in resource types
resource diagnostics 'Microsoft.Insights/diagnosticSettings@2021-05-01-preview' = if (!empty(workspaceId)) {
name: 'aks-diagnostics'
tags: tags
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ resource containerRegistry 'Microsoft.ContainerRegistry/registries@2022-02-01-pr
}
}

// TODO: Update diagnostics to be its own module
// Blocking issue: https://github.com/Azure/bicep/issues/622
// Unable to pass in a `resource` scope or unable to use string interpolation in resource types
resource diagnostics 'Microsoft.Insights/diagnosticSettings@2021-05-01-preview' = if (!empty(workspaceId)) {
wbreza marked this conversation as resolved.
Show resolved Hide resolved
name: 'registry-diagnostics'
tags: tags
Expand Down