Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump azurerm provider to 4.3 #31

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ updates:
rebase-strategy: auto
schedule:
interval: monthly
groups:
all:
patterns:
- "*"
2 changes: 1 addition & 1 deletion app_config/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.58"
version = "~> 4.3"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
4 changes: 2 additions & 2 deletions azure_blob_storage/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.58"
version = "~> 4.3"
}
}
}
Expand All @@ -24,7 +24,7 @@ resource "azurerm_storage_account" "storage" {
access_tier = var.access_tier

allow_nested_items_to_be_public = true
enable_https_traffic_only = true
https_traffic_only_enabled = true

min_tls_version = "TLS1_2"

Expand Down
2 changes: 1 addition & 1 deletion azure_blob_storage_assets/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.58"
version = "~> 4.3"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion azure_service_bus/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.58"
version = "~> 4.3"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ terraform {
}
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.58"
version = "~> 4.3"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
2 changes: 1 addition & 1 deletion key_vault/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ terraform {
}
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.58"
version = "~> 4.3"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion managed_identity/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.58"
version = "~> 4.3"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
2 changes: 1 addition & 1 deletion mssql_server/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.58"
version = "~> 4.3"
}
random = {
source = "hashicorp/random"
Expand Down
2 changes: 1 addition & 1 deletion postgresql/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.58"
version = "~> 4.3"
}
postgresql = {
source = "cyrilgdn/postgresql"
Expand Down
Loading