Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelamattes committed Jul 21, 2022
1 parent 0e5d86e commit 4c2ede1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
resource "azurerm_service_plan" "service_plan" {
for_each = var.service_plan

name = local.service_plan[each.key].name == "" ? each.key : local.service_plan[each.key].name
location = local.service_plan[each.key].location
resource_group_name = local.service_plan[each.key].resource_group_name
name = local.service_plan[each.key].name == "" ? each.key : local.service_plan[each.key].name
location = local.service_plan[each.key].location
resource_group_name = local.service_plan[each.key].resource_group_name
os_type = local.service_plan[each.key].os_type
sku_name = local.service_plan[each.key].sku_name
app_service_environment_id = local.service_plan[each.key].app_service_environment_id
Expand Down
14 changes: 7 additions & 7 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ locals {
default = {
# resource definition
service_plan = {
name = ""
os_type = "Linux"
app_service_environment_id = null
name = ""
os_type = "Linux"
app_service_environment_id = null
maximum_elastic_worker_count = null
worker_count = null
per_site_scaling_enabled = false
zone_balancing_enabled = false
tags = {}
worker_count = null
per_site_scaling_enabled = false
zone_balancing_enabled = false
tags = {}
}
linux_function_app = {
name = ""
Expand Down

0 comments on commit 4c2ede1

Please sign in to comment.