Skip to content

Commit

Permalink
Fix for notification_channel variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard-Barrett committed May 11, 2024
1 parent 566aeb5 commit c665e6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ No modules.
| <a name="input_database"></a> [database](#input\_database) | The name of the database. | `string` | n/a | yes |
| <a name="input_enable_multiple_grants"></a> [enable\_multiple\_grants](#input\_enable\_multiple\_grants) | A boolean that determines if multiple grants are enabled. | `bool` | `true` | no |
| <a name="input_name"></a> [name](#input\_name) | The name of the pipe. | `string` | n/a | yes |
| <a name="input_notification_channel"></a> [notification\_channel](#input\_notification\_channel) | The notification channel for the pipe. | `string` | `null` | no |
| <a name="input_notification_channel"></a> [notification\_channel](#input\_notification\_channel) | The notification channel for the pipe. | `string` | `""` | no |
| <a name="input_on_future"></a> [on\_future](#input\_on\_future) | ... | `bool` | `null` | no |
| <a name="input_privilege"></a> [privilege](#input\_privilege) | The privilege for the grant. | `string` | `"USAGE"` | no |
| <a name="input_roles"></a> [roles](#input\_roles) | The roles for the grant. | `list(string)` | `[]` | no |
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ variable "name" {
variable "notification_channel" {
description = "The notification channel for the pipe."
type = string
default = null
default = ""
}

variable "on_future" {
Expand Down

0 comments on commit c665e6a

Please sign in to comment.