Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnyry committed Feb 14, 2025
1 parent b6379b1 commit 8a1ee7f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion templates/shared_services/gitea/terraform/gitea-webapp.tf
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ resource "azurerm_monitor_diagnostic_setting" "webapp_gitea" {

dynamic "enabled_log" {
for_each = [
for category in data.azurerm_monitor_diagnostic_categories.webapp.log_category_types:
for category in data.azurerm_monitor_diagnostic_categories.webapp.log_category_types :
category if contains(local.webapp_diagnostic_categories_enabled, category)
]
content {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ resource "azurerm_monitor_diagnostic_setting" "gitea" {

dynamic "enabled_log" {
for_each = [
for category in data.azurerm_monitor_diagnostic_categories.gitea.log_category_types:
for category in data.azurerm_monitor_diagnostic_categories.gitea.log_category_types :
category if contains(local.web_app_diagnostic_categories_enabled, category)
]
content {
Expand Down
4 changes: 2 additions & 2 deletions templates/workspace_services/ohdsi/terraform/atlas_ui.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ resource "azurerm_linux_web_app" "atlas_ui" {
client_affinity_enabled = false

site_config {
always_on = false
ftps_state = "Disabled"
always_on = false
ftps_state = "Disabled"
minimum_tls_version = "1.3"

application_stack {
Expand Down
4 changes: 2 additions & 2 deletions templates/workspace_services/ohdsi/terraform/ohdsi_web_api.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ resource "azurerm_linux_web_app" "ohdsi_webapi" {
client_affinity_enabled = false

site_config {
always_on = true
ftps_state = "Disabled"
always_on = true
ftps_state = "Disabled"
minimum_tls_version = "1.3"

application_stack {
Expand Down

0 comments on commit 8a1ee7f

Please sign in to comment.