Skip to content

Commit

Permalink
fix: Define variable url as optional (#18)
Browse files Browse the repository at this point in the history
* fix: Define variable url as optional

* docs: Generate README.md

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
dhoppe and github-actions[bot] authored Feb 2, 2022
1 parent 7d8433a commit 46ebd25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ No modules.
| <a name="input_name"></a> [name](#input\_name) | Name of the notification configuration | `string` | n/a | yes |
| <a name="input_token"></a> [token](#input\_token) | A write-only secure token for the notification configuration | `string` | `null` | no |
| <a name="input_triggers"></a> [triggers](#input\_triggers) | The array of triggers for which this notification configuration will send notifications | `list(string)` | `[]` | no |
| <a name="input_url"></a> [url](#input\_url) | The HTTP or HTTPS URL of the notification configuration where notification requests will be made | `string` | n/a | yes |
| <a name="input_url"></a> [url](#input\_url) | The HTTP or HTTPS URL of the notification configuration where notification requests will be made | `string` | `null` | no |
| <a name="input_workspace_id"></a> [workspace\_id](#input\_workspace\_id) | The id of the workspace that owns the notification configuration | `string` | n/a | yes |

## Outputs
Expand Down
1 change: 1 addition & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

Expand Down

0 comments on commit 46ebd25

Please sign in to comment.