Skip to content
This repository has been archived by the owner on Jan 14, 2025. It is now read-only.

Commit

Permalink
Merge branch 'fix/add-missing-tags' into component-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
heoelri committed Feb 5, 2024
2 parents 8e33bb4 + 773ebc9 commit 8e6d05a
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .ado/pipelines/config/configuration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ variables:
- name: 'kubernetesVersion' # kubernetes version used for aks clusters
value: '1.27.3'
- name: 'helmVersion' # helm package manager version
value: 'v3.13.1'
value: 'v3.14.0'
- name: 'ingressNginxVersion' # nginx ingress controller helm chart version
value: '4.7.3'
- name: 'certManagerVersion' # cert-manager helm chart version
Expand Down
6 changes: 3 additions & 3 deletions src/app/AlwaysOn.UI/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions src/infra/monitoring/grafana/config/grafana.ini
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,6 @@ admin_user = ${GRAFANA_USERNAME}
# default admin password, can be changed before first start of grafana, or in profile settings
admin_password = ${GRAFANA_PASSWORD}

# used for signing
;secret_key = SW2YcwTIb9zpOOhoPsMm

# disable gravatar profile images
;disable_gravatar = false
Expand Down
7 changes: 7 additions & 0 deletions src/infra/workload/releaseunit/modules/stamp/prometheus.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ resource "azurerm_monitor_data_collection_endpoint" "stamp" {
kind = "Linux"
public_network_access_enabled = true
description = "monitor_data_collection_endpoint example"

tags = var.default_tags
}

resource "azurerm_monitor_data_collection_rule" "stamp" {
Expand Down Expand Up @@ -39,6 +41,8 @@ resource "azurerm_monitor_data_collection_rule" "stamp" {
name = "MonitoringAccount1"
}
}

tags = var.default_tags
}

resource "azurerm_monitor_data_collection_rule_association" "aks" {
Expand Down Expand Up @@ -75,6 +79,7 @@ resource "azurerm_monitor_alert_prometheus_rule_group" "prometheusK8sRuleGroup"
enabled = true
}

tags = var.default_tags
}

resource "azurerm_monitor_alert_prometheus_rule_group" "prometheusNodeRuleGroup" {
Expand All @@ -95,4 +100,6 @@ resource "azurerm_monitor_alert_prometheus_rule_group" "prometheusNodeRuleGroup"
}
enabled = true
}

tags = var.default_tags
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ resource "azurerm_storage_account" "regional" {
resource_group_name = var.resource_group_name
account_tier = "Standard"
account_replication_type = "LRS"
allow_nested_items_to_be_public = false

tags = var.default_tags
}
1 change: 1 addition & 0 deletions src/testing/userload-generator/infra/storage.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ resource "azurerm_storage_account" "master" {
resource_group_name = azurerm_resource_group.deployment.name
account_tier = "Standard"
account_replication_type = "LRS"
allow_nested_items_to_be_public = false

tags = local.default_tags
}

0 comments on commit 8e6d05a

Please sign in to comment.