Skip to content

Commit

Permalink
chore: go generate
Browse files Browse the repository at this point in the history
  • Loading branch information
leggetter committed Oct 21, 2024
1 parent 8a3d669 commit 690e3bc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
2 changes: 2 additions & 0 deletions docs/data-sources/destination.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ Whether the API key should be sent as a header or a query parameter
Read-Only:

- `access_key_id` (String, Sensitive) AWS access key id
- `region` (String) AWS region
- `secret_access_key` (String, Sensitive) AWS secret access key
- `service` (String) AWS service


<a id="nestedatt--auth_method--basic_auth"></a>
Expand Down
5 changes: 5 additions & 0 deletions docs/resources/destination.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,11 @@ Required:
- `access_key_id` (String, Sensitive) AWS access key id
- `secret_access_key` (String, Sensitive) AWS secret access key

Optional:

- `region` (String) AWS region
- `service` (String) AWS service


<a id="nestedatt--auth_method--basic_auth"></a>
### Nested Schema for `auth_method.basic_auth`
Expand Down
8 changes: 4 additions & 4 deletions examples/full/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ variable "HEADER_FILTER_VALUES" {
terraform {
required_providers {
hookdeck = {
source = "hookdeck/hookdeck"
source = "hookdeck/hookdeck"
version = "0.5.0-beta.1"
}
}
Expand Down Expand Up @@ -71,10 +71,10 @@ resource "hookdeck_destination" "aws_destination" {
url = "https://mock.hookdeck.com"
auth_method = {
aws_signature = {
access_key_id = "some-access"
access_key_id = "some-access"
secret_access_key = "some-secret"
region = "us-west-2"
service = "lambda"
region = "us-west-2"
service = "lambda"
}
}
}
Expand Down

0 comments on commit 690e3bc

Please sign in to comment.