Skip to content
Open
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
3 changes: 2 additions & 1 deletion azure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ module "cluster" {

source = "app.terraform.io/indico/indico-azure-cluster/mod"
insights_retention_in_days = var.monitor_retention_in_days
version = "4.2.5"
version = "4.3.7"
label = var.label
public_key = tls_private_key.pk.public_key_openssh
region = var.region
Expand Down Expand Up @@ -300,6 +300,7 @@ module "cluster" {

aks_storage_account_name = var.aks_storage_account_name

enable_diagnostic_settings = var.enable_diagnostic_settings
sentinel_workspace_name = local.sentinel_workspace_name
sentinel_workspace_resource_group_name = local.sentinel_workspace_resource_group_name
sentinel_workspace_id = var.sentinel_workspace_id
Expand Down
6 changes: 6 additions & 0 deletions azure/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -682,6 +682,12 @@ variable "ssl_static_secret_name" {

# Log analytics

variable "enable_diagnostic_settings" {
type = bool
default = true
description = "Enable diagnostic settings for the cluster"
}

variable "sentinel_workspace_name" {
type = string
default = null # "${var.account}-sentinel-workspace"
Expand Down
Loading