Skip to content

Commit

Permalink
add msi auth (#1021)
Browse files Browse the repository at this point in the history
  • Loading branch information
heoelri authored Aug 25, 2023
1 parent 83f103b commit 7130bbd
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 51 deletions.
100 changes: 50 additions & 50 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,150 +1,150 @@
# This file is auto-generated by .github/scripts/update-dependabot.ps1
### This file is auto-generated by .github/scripts/update-dependabot.ps1
version: 2
updates:
updates:
- package-ecosystem: "nuget"
directory: "/src/app/AlwaysOn.BackgroundProcessor"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "docker"
directory: "/src/app/AlwaysOn.BackgroundProcessor"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "docker"
directory: "/src/app/AlwaysOn.UI"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "npm"
directory: "/src/app/AlwaysOn.UI"
schedule:
interval: "monthly"
target-branch: "component-updates"
target-branch: "component-updates"
allow:
- dependency-type: direct
- dependency-type: production # check only dependencies, which are going to the compiled app, not supporting tools like @vue-cli

- dependency-type: production # check only dependencies, which are going to the compiled app, not supporting tools like @vue-cli

- package-ecosystem: "nuget"
directory: "/src/app/AlwaysOn.CatalogService"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "docker"
directory: "/src/app/AlwaysOn.CatalogService"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "nuget"
directory: "/src/app/AlwaysOn.Shared"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "nuget"
directory: "/src/app/AlwaysOn.Tests"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "nuget"
directory: "/src/app/AlwaysOn.HealthService"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "docker"
directory: "/src/app/AlwaysOn.HealthService"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "docker"
directory: "/src/infra/monitoring/grafana"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "npm"
directory: "/src/infra/monitoring/grafana/healthmodelpanel"
schedule:
interval: "monthly"
target-branch: "component-updates"
target-branch: "component-updates"
allow:
- dependency-type: direct
- dependency-type: production # check only dependencies, which are going to the compiled app, not supporting tools like @vue-cli

- dependency-type: production # check only dependencies, which are going to the compiled app, not supporting tools like @vue-cli

- package-ecosystem: "terraform"
directory: "/src/infra/monitoring/grafana/terraform/globalresources"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "terraform"
directory: "/src/infra/monitoring/grafana/terraform/stamps"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "terraform"
directory: "/src/infra/workload/globalresources"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "terraform"
directory: "/src/infra/workload/releaseunit"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "terraform"
directory: "/src/infra/workload/releaseunit/modules/stamp"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "terraform"
directory: "/src/testing/loadtest-azure/infra"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "nuget"
directory: "/src/testing/userload-generator/AzureFunctions/GlobalOrchestrator"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "npm"
directory: "/src/testing/userload-generator/AzureFunctions/RegionalLoadGenerator"
schedule:
interval: "monthly"
target-branch: "component-updates"
target-branch: "component-updates"
allow:
- dependency-type: direct
- dependency-type: production # check only dependencies, which are going to the compiled app, not supporting tools like @vue-cli

- dependency-type: production # check only dependencies, which are going to the compiled app, not supporting tools like @vue-cli

- package-ecosystem: "terraform"
directory: "/src/testing/userload-generator/infra"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "terraform"
directory: "/src/testing/loadtest-locust/infra"
schedule:
interval: "monthly"
target-branch: "component-updates"

target-branch: "component-updates"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
target-branch: "component-updates"
target-branch: "component-updates"

3 changes: 2 additions & 1 deletion src/infra/workload/releaseunit/modules/stamp/kubernetes.tf
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ resource "azurerm_kubernetes_cluster" "stamp" {

# Enable and configure the Azure Monitor (container insights) addon for AKS
oms_agent {
log_analytics_workspace_id = data.azurerm_log_analytics_workspace.stamp.id
log_analytics_workspace_id = data.azurerm_log_analytics_workspace.stamp.id
msi_auth_for_monitoring_enabled = true
}

# Enable and configure the Azure KeyVault Secrets Provider addon for AKS
Expand Down

0 comments on commit 7130bbd

Please sign in to comment.