From c665e6a9756f8f95d996a3349741f23599c779f7 Mon Sep 17 00:00:00 2001 From: Richard Barrett Date: Sat, 11 May 2024 13:41:26 -0500 Subject: [PATCH] Fix for notification_channel variable --- README.md | 2 +- variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 53ba863..0a2a18c 100644 --- a/README.md +++ b/README.md @@ -189,7 +189,7 @@ No modules. | [database](#input\_database) | The name of the database. | `string` | n/a | yes | | [enable\_multiple\_grants](#input\_enable\_multiple\_grants) | A boolean that determines if multiple grants are enabled. | `bool` | `true` | no | | [name](#input\_name) | The name of the pipe. | `string` | n/a | yes | -| [notification\_channel](#input\_notification\_channel) | The notification channel for the pipe. | `string` | `null` | no | +| [notification\_channel](#input\_notification\_channel) | The notification channel for the pipe. | `string` | `""` | no | | [on\_future](#input\_on\_future) | ... | `bool` | `null` | no | | [privilege](#input\_privilege) | The privilege for the grant. | `string` | `"USAGE"` | no | | [roles](#input\_roles) | The roles for the grant. | `list(string)` | `[]` | no | diff --git a/variables.tf b/variables.tf index fc4ff0f..bc51827 100644 --- a/variables.tf +++ b/variables.tf @@ -41,7 +41,7 @@ variable "name" { variable "notification_channel" { description = "The notification channel for the pipe." type = string - default = null + default = "" } variable "on_future" {