Skip to content

Commit

Permalink
Providers versions update
Browse files Browse the repository at this point in the history
  • Loading branch information
denis256 committed Oct 5, 2023
1 parent 88d9be2 commit a0e089c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions examples/azure/terraform-azure-aci-example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
terraform {
required_providers {
azurerm = {
version = "~>2.29.0"
version = "~>3.75.0"
source = "hashicorp/azurerm"
}
}
Expand Down Expand Up @@ -39,7 +39,7 @@ resource "azurerm_container_group" "aci" {
location = azurerm_resource_group.rg.location
resource_group_name = azurerm_resource_group.rg.name

ip_address_type = "public"
ip_address_type = "Public"
dns_name_label = "aci${var.postfix}"
os_type = "Linux"

Expand Down
2 changes: 1 addition & 1 deletion examples/azure/terraform-azure-acr-example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
terraform {
required_providers {
azurerm = {
version = "~>2.29.0"
version = "~>3.75.0"
source = "hashicorp/azurerm"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ terraform {
required_version = ">= 0.12.26"
required_providers {
azurerm = {
version = "~> 2.50"
version = "~>3.75.0"
source = "hashicorp/azurerm"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/azure/terraform-azure-cosmosdb-example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ terraform {
required_version = ">= 0.12.26"
required_providers {
azurerm = {
version = "~> 2.29"
version = "~>3.75.0"
source = "hashicorp/azurerm"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/azure/terraform-azure-disk-example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ terraform {
required_version = ">= 0.12.26"
required_providers {
azurerm = {
version = "~> 2.29"
version = "~>3.75.0"
source = "hashicorp/azurerm"
}
}
Expand Down
6 changes: 3 additions & 3 deletions examples/azure/terraform-azure-monitor-example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ terraform {
required_version = ">= 0.12.26"
required_providers {
azurerm = {
version = "~> 2.29"
version = "~>3.75.0"
source = "hashicorp/azurerm"
}
azuread = {
version = "=0.7.0"
version = "=2.43.0"
source = "hashicorp/azuread"
}
}
Expand Down Expand Up @@ -84,7 +84,7 @@ resource "azurerm_key_vault" "monitor" {
resource_group_name = azurerm_resource_group.monitor.name
enabled_for_disk_encryption = true
tenant_id = data.azurerm_client_config.current.tenant_id
soft_delete_enabled = true
soft_delete_retention_days = 7
purge_protection_enabled = false

sku_name = "standard"
Expand Down

0 comments on commit a0e089c

Please sign in to comment.