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

breaking(main): Update enable_https_traffic_only to https_traffic_only_enabled #476

Merged
merged 2 commits into from
Aug 2, 2024
Merged
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ module "terraform_state_storage_account" {
storage_account_account_tier = "Premium"
storage_account_account_replication_type = "GRS"
storage_account_min_tls_version = "TLS1_1"
storage_account_enable_https_traffic_only = false
storage_account_https_traffic_only_enabled = false
storage_account_queue_encryption_key_type = "Account"
storage_account_table_encryption_key_type = "Account"
storage_account_infrastructure_encryption_enabled = true
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module "terraform_state_storage_account" {
storage_account_account_tier = "Premium"
storage_account_account_replication_type = "GRS"
storage_account_min_tls_version = "TLS1_1"
storage_account_enable_https_traffic_only = false
storage_account_https_traffic_only_enabled = false
storage_account_queue_encryption_key_type = "Account"
storage_account_table_encryption_key_type = "Account"
storage_account_infrastructure_encryption_enabled = true
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "azurerm_storage_account" "this" {
account_tier = var.storage_account_account_tier
account_replication_type = var.storage_account_account_replication_type
min_tls_version = var.storage_account_min_tls_version
enable_https_traffic_only = var.storage_account_enable_https_traffic_only
https_traffic_only_enabled = var.storage_account_https_traffic_only_enabled
queue_encryption_key_type = var.storage_account_queue_encryption_key_type
table_encryption_key_type = var.storage_account_table_encryption_key_type
infrastructure_encryption_enabled = var.storage_account_infrastructure_encryption_enabled
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ variable "storage_account_min_tls_version" {
default = "TLS1_2"
}

variable "storage_account_enable_https_traffic_only" {
variable "storage_account_https_traffic_only_enabled" {
type = bool
description = "(optional) Boolean flag which forces HTTPS if enabled"
default = true
Expand Down