Skip to content

Commit

Permalink
fix: indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMaharshi committed Aug 7, 2024
1 parent 39b6e20 commit 996e934
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion _example/complete/linux_web_app/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = ">=3.109.0"
version = ">=3.109.0"
}
}
}
2 changes: 1 addition & 1 deletion _example/complete/windows_web_app/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ module "windows-web-app" {
##-----------------------------------------------------------------------------
## Dot net
##-----------------------------------------------------------------------------
use_dotnet = true # Make it true if want to use it
use_dotnet = true # Make it true if want to use it
dotnet_version = var.dotnet_version # For dotnet
dotnet_core_version = var.dotnet_core_version # For dotnetcore

Expand Down
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ resource "azurerm_linux_web_app" "main" {
for_each = [local.site_config]

content {
linux_fx_version = lookup(site_config.value, "linux_fx_version", null)
linux_fx_version = lookup(site_config.value, "linux_fx_version", null)
container_registry_managed_identity_client_id = lookup(site_config.value, "container_registry_managed_identity_client_id", null)
container_registry_use_managed_identity = lookup(site_config.value, "container_registry_use_managed_identity", null)

Expand Down Expand Up @@ -533,7 +533,7 @@ resource "azurerm_windows_web_app" "main" {
for_each = [local.site_config]

content {
windows_fx_version = lookup(site_config.value, "windows_fx_version", null)
windows_fx_version = lookup(site_config.value, "windows_fx_version", null)
container_registry_managed_identity_client_id = lookup(site_config.value, "container_registry_managed_identity_client_id", null)
container_registry_use_managed_identity = lookup(site_config.value, "container_registry_use_managed_identity", null)

Expand Down

0 comments on commit 996e934

Please sign in to comment.