Skip to content

Commit fc5f63b

Browse files
authored
remove deprecated jwks endpoint (#523)
1 parent d706198 commit fc5f63b

2 files changed

Lines changed: 0 additions & 8 deletions

File tree

docs/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ Note: AWS specific checks must be skipped as they do not work on STACKIT. For de
146146
- `dns_custom_endpoint` (String) Custom endpoint for the DNS service
147147
- `enable_beta_resources` (Boolean) Enable beta resources. Default is false.
148148
- `iaas_custom_endpoint` (String) Custom endpoint for the IaaS service
149-
- `jwks_custom_endpoint` (String, Deprecated) Custom endpoint for the jwks API, which is used to get the json web key sets (jwks) to validate tokens when using the key flow
150149
- `loadbalancer_custom_endpoint` (String) Custom endpoint for the Load Balancer service
151150
- `logme_custom_endpoint` (String) Custom endpoint for the LogMe service
152151
- `mariadb_custom_endpoint` (String) Custom endpoint for the MariaDB service

stackit/provider.go

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ type providerModel struct {
113113
ServerBackupCustomEndpoint types.String `tfsdk:"server_backup_custom_endpoint"`
114114
ResourceManagerCustomEndpoint types.String `tfsdk:"resourcemanager_custom_endpoint"`
115115
TokenCustomEndpoint types.String `tfsdk:"token_custom_endpoint"`
116-
JWKSCustomEndpoint types.String `tfsdk:"jwks_custom_endpoint"`
117116
EnableBetaResources types.Bool `tfsdk:"enable_beta_resources"`
118117
ServiceEnablementCustomEndpoint types.String `tfsdk:"service_enablement_custom_endpoint"`
119118
}
@@ -151,7 +150,6 @@ func (p *Provider) Schema(_ context.Context, _ provider.SchemaRequest, resp *pro
151150
"ske_custom_endpoint": "Custom endpoint for the Kubernetes Engine (SKE) service",
152151
"service_enablement_custom_endpoint": "Custom endpoint for the Service Enablement API",
153152
"token_custom_endpoint": "Custom endpoint for the token API, which is used to request access tokens when using the key flow",
154-
"jwks_custom_endpoint": "Custom endpoint for the jwks API, which is used to get the json web key sets (jwks) to validate tokens when using the key flow",
155153
"enable_beta_resources": "Enable beta resources. Default is false.",
156154
}
157155

@@ -278,11 +276,6 @@ func (p *Provider) Schema(_ context.Context, _ provider.SchemaRequest, resp *pro
278276
Optional: true,
279277
Description: descriptions["token_custom_endpoint"],
280278
},
281-
"jwks_custom_endpoint": schema.StringAttribute{
282-
Optional: true,
283-
Description: descriptions["jwks_custom_endpoint"],
284-
DeprecationMessage: "Validation using JWKS was removed, for being redundant with token validation done in the APIs. This field has no effect, and will be removed in a later update",
285-
},
286279
"enable_beta_resources": schema.BoolAttribute{
287280
Optional: true,
288281
Description: descriptions["enable_beta_resources"],

0 commit comments

Comments
 (0)