diff --git a/README.md b/README.md index 79474a1..d6cc9aa 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ No modules. | [name](#input\_name) | Name of the notification configuration | `string` | n/a | yes | | [token](#input\_token) | A write-only secure token for the notification configuration | `string` | `null` | no | | [triggers](#input\_triggers) | The array of triggers for which this notification configuration will send notifications | `list(string)` | `[]` | no | -| [url](#input\_url) | The HTTP or HTTPS URL of the notification configuration where notification requests will be made | `string` | n/a | yes | +| [url](#input\_url) | The HTTP or HTTPS URL of the notification configuration where notification requests will be made | `string` | `null` | no | | [workspace\_id](#input\_workspace\_id) | The id of the workspace that owns the notification configuration | `string` | n/a | yes | ## Outputs diff --git a/variables.tf b/variables.tf index e536175..4b4dfac 100644 --- a/variables.tf +++ b/variables.tf @@ -40,6 +40,7 @@ variable "triggers" { variable "url" { type = string + default = null description = "The HTTP or HTTPS URL of the notification configuration where notification requests will be made" }