We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dc0ac5 commit 11750f8Copy full SHA for 11750f8
examples/public-repository-with-webhook/main.tf
@@ -22,14 +22,11 @@ module "repository" {
22
name = var.name
23
24
webhooks = [{
25
- active = var.webhook_active
26
- events = var.webhook_events
27
-
28
- configuration = {
29
- url = var.webhook_url
30
- content_type = var.webhook_content_type
31
- insecure_ssl = var.webhook_insecure_ssl
32
- secret = var.webhook_secret
33
- }
+ active = var.webhook_active
+ events = var.webhook_events
+ url = var.webhook_url
+ content_type = var.webhook_content_type
+ insecure_ssl = var.webhook_insecure_ssl
+ secret = var.webhook_secret
34
}]
35
}
0 commit comments