File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ module "github_webhooks" {
5454 github_token = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
5555 github_repositories = "geodesic"
5656 webhook_url = "https://atlantis.prod.company.com/"
57- content_type = "application/ json"
57+ content_type = "json"
5858 events = ["issues"]
5959}
6060```
@@ -74,7 +74,6 @@ Available targets:
7474 lint Lint terraform code
7575
7676```
77-
7877## Inputs
7978
8079| Name | Description | Type | Default | Required |
@@ -86,7 +85,7 @@ Available targets:
8685| github_repositories | List of repository names which should be associated with the webhook | list | ` <list> ` | no |
8786| github_token | GitHub token used for API access | string | - | yes |
8887| name | The type of webhook | string | ` web ` | no |
89- | webhook_content_type | Webhook Content Type (E.g. application/ json) | string | ` application/ json` | no |
88+ | webhook_content_type | Webhook Content Type (E.g. json) | string | ` json ` | no |
9089| webhook_insecure_ssl | Webhook Insecure SSL (E.g. trust self-signed certificates) | string | ` false ` | no |
9190| webhook_secret | Webhook secret | string | `` | no |
9291| webhook_url | Webhook URL | string | - | yes |
Original file line number Diff line number Diff line change 1-
21## Inputs
32
43| Name | Description | Type | Default | Required |
109| github_repositories | List of repository names which should be associated with the webhook | list | ` <list> ` | no |
1110| github_token | GitHub token used for API access | string | - | yes |
1211| name | The type of webhook | string | ` web ` | no |
13- | webhook_content_type | Webhook Content Type (E.g. application/ json) | string | ` application/ json` | no |
12+ | webhook_content_type | Webhook Content Type (E.g. json) | string | ` json ` | no |
1413| webhook_insecure_ssl | Webhook Insecure SSL (E.g. trust self-signed certificates) | string | ` false ` | no |
1514| webhook_secret | Webhook secret | string | `` | no |
1615| webhook_url | Webhook URL | string | - | yes |
Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ variable "webhook_url" {
3030}
3131
3232variable "webhook_content_type" {
33- description = " Webhook Content Type (E.g. application/ json)"
34- default = " application/ json"
33+ description = " Webhook Content Type (E.g. json)"
34+ default = " json"
3535}
3636
3737variable "webhook_secret" {
You can’t perform that action at this time.
0 commit comments