Skip to content

Commit

Permalink
Few fixes for https traffic
Browse files Browse the repository at this point in the history
  • Loading branch information
dunefro committed Nov 28, 2024
1 parent 45d0d61 commit 9a2d449
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion container.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ resource "azurerm_storage_account" "truefoundry_platform_storage_account" {
location = var.location
account_tier = var.blob_storage_account_account_tier
account_replication_type = var.blob_storage_account_replication_type
enable_https_traffic_only = true
access_tier = "Hot"
min_tls_version = "TLS1_2"
public_network_access_enabled = true
Expand Down
2 changes: 1 addition & 1 deletion output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ output "truefoundry_cluster_integrations_service_principal_password" {

output "truefoundry_cluster_integrations_azuread_application_name" {
value = var.feature_cluster_integration_enabled ? local.cluster_name : ""
}
}
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = ">= 3.107.0"
version = "~> 3.107"
}
azuread = {
source = "hashicorp/azuread"
version = ">= 3.0.2"
version = "~> 3.0"
}
}
}

0 comments on commit 9a2d449

Please sign in to comment.