Skip to content

Commit

Permalink
1839: Adding provider upgrades and correcting Terraform syntax (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaheislamdfe authored Aug 22, 2024
1 parent d2f5629 commit 4aa9e5f
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 35 deletions.
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
terraform 1.3.4
62 changes: 31 additions & 31 deletions terraform/.terraform.lock.hcl

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

2 changes: 1 addition & 1 deletion terraform/data.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ data "azurerm_key_vault_secret" "secrets" {
}

data "azurerm_linux_web_app" "web_app" {
count = var.enable_blue_green ? 1 : 0
count = var.enable_blue_green ? 1 : 0
name = local.web_app_name
resource_group_name = data.azurerm_resource_group.resource_group.name
}
4 changes: 2 additions & 2 deletions terraform/terraform.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.32.0"
version = "3.116.0"
}

statuscake = {
source = "StatusCakeDev/statuscake"
version = "2.0.5"
version = "2.2.2"
}
}
}
2 changes: 1 addition & 1 deletion terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ variable "app_service_plan_sku_tier" {
}

variable "storage_account" {
type = string
type = string
default = ""
}

Expand Down

0 comments on commit 4aa9e5f

Please sign in to comment.