Skip to content

Commit b9099b6

Browse files
release v0.17.0 (#192)
* chore: bump speakeasy to 1.759.2 (#190) * chore: bump speakeasy to 1.759.2 * Chore/sync with platform api 2026 03 26 (#191) * tests: add test for event gateway trust bundle * OpenAPI changes * Generated provider and docs * Update CHANGELOG.md * fix: add hook to replace domain * chore: release v0.17.0
1 parent 7922e48 commit b9099b6

File tree

198 files changed

+4723
-700
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

198 files changed

+4723
-700
lines changed

.speakeasy/gen.lock

Lines changed: 417 additions & 284 deletions
Large diffs are not rendered by default.

.speakeasy/workflow.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
speakeasyVersion: 1.724.1
1+
speakeasyVersion: 1.759.2
22
sources: {}
33
targets:
44
terraform:
55
source: kong
66
workflow:
77
workflowVersion: 1.0.0
8-
speakeasyVersion: 1.724.1
8+
speakeasyVersion: 1.759.2
99
sources:
1010
kong:
1111
inputs:

.speakeasy/workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
workflowVersion: 1.0.0
2-
speakeasyVersion: 1.724.1
2+
speakeasyVersion: 1.759.2
33
sources:
44
kong:
55
inputs:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.17.0
4+
> Released on 2026/03/26
5+
6+
### Features
7+
* Add support for client authentication on `konnect_event_gateway_listener_policy_tls_server` using `konnect_event_gateway_tls_trust_bundle` resource
8+
39
## 0.16.0
410
> Released on 2026/03/02
511

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ terraform {
1616
required_providers {
1717
konnect-beta = {
1818
source = "kong/konnect-beta"
19-
version = "0.16.0"
19+
version = "0.17.0"
2020
}
2121
}
2222
}

docs/resources/api_document.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ resource "konnect_api_document" "my_apidocument" {
1717
provider = konnect-beta
1818
api_id = "9f5061ce-78f6-4452-9108-ad7c02821fd5"
1919
content = "...my_content..."
20-
parent_document_id = "b689d9da-f357-4687-8303-ec1c14d44e37"
20+
parent_document_id = "0b689d9d-af35-4768-9730-3ec1c14d44e3"
2121
slug = "api-document"
22-
status = "published"
22+
status = "unpublished"
2323
title = "API Document"
2424
}
2525
```

docs/resources/api_implementation.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ resource "konnect_api_implementation" "my_apiimplementation" {
4444

4545
### Read-Only
4646

47+
- `created_at` (String) An ISO-8601 timestamp representation of entity creation date.
4748
- `id` (String) Contains a unique identifier used for this resource.
49+
- `updated_at` (String) An ISO-8601 timestamp representation of entity update date.
4850

4951
<a id="nestedatt--control_plane_reference"></a>
5052
### Nested Schema for `control_plane_reference`

docs/resources/auth_server.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,15 @@ AuthServer Resource
1515
```terraform
1616
resource "konnect_auth_server" "my_authserver" {
1717
provider = konnect-beta
18-
audience = "...my_audience..."
19-
description = "...my_description..."
20-
force_destroy = "true"
18+
audience = "...my_audience..."
19+
dcr_default_access_token_duration = 300
20+
description = "...my_description..."
21+
force_destroy = "false"
2122
labels = {
2223
key = "value"
2324
}
2425
name = "...my_name..."
25-
signing_algorithm = "RS384"
26+
signing_algorithm = "RS256"
2627
trusted_origins = [
2728
"https://example.com"
2829
]
@@ -39,6 +40,7 @@ resource "konnect_auth_server" "my_authserver" {
3940

4041
### Optional
4142

43+
- `dcr_default_access_token_duration` (Number) The default access token duration, in seconds, applied to DCR clients registered against this auth server. Default: 300
4244
- `description` (String) The description of the auth server
4345
- `force_destroy` (String) If true, delete the specified auth server and all its associated resources. If false, only allow deletion if no clients, scopes or claims are associated with the auth server. Default: "false"; must be one of ["true", "false"]
4446
- `labels` (Map of String) Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.

docs/resources/auth_server_claims.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ AuthServerClaims Resource
1616
resource "konnect_auth_server_claims" "my_authserverclaims" {
1717
provider = konnect-beta
1818
auth_server_id = "d32d905a-ed33-46a3-a093-d8f536af9a8a"
19-
enabled = false
19+
enabled = true
2020
include_in_all_scopes = false
2121
include_in_scopes = [
2222
"ee406f81-4a0f-4902-bca4-091a176f4915"

docs/resources/auth_server_clients.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ AuthServerClients Resource
1515
```terraform
1616
resource "konnect_auth_server_clients" "my_authserverclients" {
1717
provider = konnect-beta
18-
access_token_duration = 1458901
19-
allow_all_scopes = true
18+
access_token_duration = 300
19+
allow_all_scopes = false
2020
allow_scopes = [
2121
"247c0ad0-5487-46a8-bedf-a569c07c2442"
2222
]
@@ -26,7 +26,7 @@ resource "konnect_auth_server_clients" "my_authserverclients" {
2626
"authorization_code"
2727
]
2828
id = "kYa9iQFU5xPDSIUH9z1z"
29-
id_token_duration = 961077
29+
id_token_duration = 300
3030
labels = {
3131
key = "value"
3232
}
@@ -35,7 +35,7 @@ resource "konnect_auth_server_clients" "my_authserverclients" {
3535
redirect_uris = [
3636
"https://flashy-sauerkraut.com/"
3737
]
38-
refresh_token_duration = 84206233
38+
refresh_token_duration = 2592000
3939
response_types = [
4040
"none"
4141
]

0 commit comments

Comments
 (0)