Skip to content

Commit

Permalink
fix(variables.tf): change default value of blob_container_enable_over…
Browse files Browse the repository at this point in the history
…ride to false to disable container name override by default
  • Loading branch information
sachincool committed Nov 19, 2024
1 parent 323c968 commit 807c568
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ variable "blob_storage_account_override_name" {
variable "blob_container_enable_override" {
description = "Enable overriding the name of container. This will only be used if feature_blob_storage_enabled is true. You need to pass container_override_name to pass the container name"
type = bool
default = true
default = false
}

variable "blob_container_override_name" {
Expand Down

0 comments on commit 807c568

Please sign in to comment.