Skip to content

Commit

Permalink
Merge pull request #12 from truefoundry/https-traffic-fixes
Browse files Browse the repository at this point in the history
Few fixes for https traffic
  • Loading branch information
dunefro authored Nov 28, 2024
2 parents 45d0d61 + d6d5217 commit e03108c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.4 |
| <a name="requirement_azuread"></a> [azuread](#requirement\_azuread) | >= 3.0.2 |
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | >= 3.107.0 |
| <a name="requirement_azuread"></a> [azuread](#requirement\_azuread) | ~> 3.0 |
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | ~> 3.107 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_azuread"></a> [azuread](#provider\_azuread) | >= 3.0.2 |
| <a name="provider_azurerm"></a> [azurerm](#provider\_azurerm) | >= 3.107.0 |
| <a name="provider_azuread"></a> [azuread](#provider\_azuread) | ~> 3.0 |
| <a name="provider_azurerm"></a> [azurerm](#provider\_azurerm) | ~> 3.107 |

## Modules

Expand Down
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 e03108c

Please sign in to comment.