Skip to content

Commit

Permalink
chore(deps): update hashicorp/azurerm requirement from ~> 3.0 to ~> 4…
Browse files Browse the repository at this point in the history
….3 in /infra/terraform (#613)

* chore(deps): update hashicorp/azurerm requirement from ~> 3.0 to ~> 4.3

Updates the requirements on [hashicorp/azurerm](https://github.com/hashicorp/terraform-provider-azurerm) to permit the latest version.
- [Release notes](https://github.com/hashicorp/terraform-provider-azurerm/releases)
- [Changelog](https://github.com/hashicorp/terraform-provider-azurerm/blob/main/CHANGELOG.md)
- [Commits](hashicorp/terraform-provider-azurerm@v3.0.0...v4.3.0)

---
updated-dependencies:
- dependency-name: hashicorp/azurerm
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix: update deprecated azure_rm tf features

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alice Jones <[email protected]>
  • Loading branch information
dependabot[bot] and Pactionly authored Sep 22, 2024
1 parent 81fc50c commit dc144d7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions infra/terraform/appservice.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ resource "azurerm_linux_web_app" "gratibot_app_service" {
}

site_config {
always_on = "true"
health_check_path = "/health"
use_32_bit_worker = false
always_on = "true"
health_check_path = "/health"
health_check_eviction_time_in_min = 5
use_32_bit_worker = false
application_stack {
docker_image_name = var.gratibot_image
docker_registry_url = var.gratibot_image_registry
Expand Down
2 changes: 1 addition & 1 deletion infra/terraform/main.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
provider "azurerm" {
features {}
skip_provider_registration = "true"
resource_provider_registrations = "none"
}
2 changes: 1 addition & 1 deletion infra/terraform/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.0"
version = "~> 4.3"
}
}

Expand Down

0 comments on commit dc144d7

Please sign in to comment.