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

fix(variables.tf): change default value of blob_container_enable_override to false to disable container name override by default #10

Merged
merged 2 commits into from
Nov 19, 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 @@ -35,7 +35,7 @@ No modules.

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_blob_container_enable_override"></a> [blob\_container\_enable\_override](#input\_blob\_container\_enable\_override) | 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 | `bool` | `true` | no |
| <a name="input_blob_container_enable_override"></a> [blob\_container\_enable\_override](#input\_blob\_container\_enable\_override) | 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 | `bool` | `false` | no |
| <a name="input_blob_container_override_name"></a> [blob\_container\_override\_name](#input\_blob\_container\_override\_name) | Container name. Only used if container\_enable\_override is true | `string` | `""` | no |
| <a name="input_blob_storage_account_account_tier"></a> [blob\_storage\_account\_account\_tier](#input\_blob\_storage\_account\_account\_tier) | Account tier of the storage account | `string` | `"Standard"` | no |
| <a name="input_blob_storage_account_enable_override"></a> [blob\_storage\_account\_enable\_override](#input\_blob\_storage\_account\_enable\_override) | Enable overriding the name of storage account. This will only be used if feature\_blob\_storage\_enabled is true. You need to pass blob\_storage\_account\_override\_name to pass the storage account name | `bool` | `false` | no |
Expand Down
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