-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(kafka_quota): added support for kafka quota
- Loading branch information
Showing
12 changed files
with
1,159 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "aiven_kafka_quota Resource - terraform-provider-aiven" | ||
subcategory: "" | ||
description: |- | ||
Creates and manages quotas for an Aiven for Apache Kafka® service user. | ||
--- | ||
|
||
# aiven_kafka_quota (Resource) | ||
|
||
Creates and manages quotas for an Aiven for Apache Kafka® service user. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "aiven_kafka_quota" "example_quota" { | ||
project = data.aiven_project.foo.project | ||
service_name = aiven_kafka.example_kafka.service_name | ||
user = "example-kafka-user" | ||
client_id = "example_client" | ||
consumer_byte_rate = 1000 | ||
producer_byte_rate = 1000 | ||
request_percentage = 50 | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `project` (String) The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource. | ||
- `service_name` (String) The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource. | ||
|
||
### Optional | ||
|
||
- `client_id` (String) Represents a logical group of clients, assigned a unique name by the client application. | ||
Quotas can be applied based on user, client-id, or both. | ||
The most relevant quota is chosen for each connection. | ||
All connections within a quota group share the same quota. | ||
It is possible to set default quotas for each (user, client-id), user or client-id group by specifying 'default' | ||
- `consumer_byte_rate` (Number) Defines the bandwidth limit in bytes/sec for each group of clients sharing a quota. | ||
Every distinct client group is allocated a specific quota, as defined by the cluster, on a per-broker basis. | ||
Exceeding this limit results in client throttling. | ||
- `producer_byte_rate` (Number) Defines the bandwidth limit in bytes/sec for each group of clients sharing a quota. | ||
Every distinct client group is allocated a specific quota, as defined by the cluster, on a per-broker basis. | ||
Exceeding this limit results in client throttling. | ||
- `request_percentage` (Number) Sets the maximum percentage of CPU time that a client group can use on request handler I/O and network threads per broker within a quota window. | ||
Exceeding this limit triggers throttling. | ||
The quota, expressed as a percentage, also indicates the total allowable CPU usage for the client groups sharing the quota. | ||
- `timeouts` (Block, Optional) (see [below for nested schema](#nestedblock--timeouts)) | ||
- `user` (String) Represents a logical group of clients, assigned a unique name by the client application. | ||
Quotas can be applied based on user, client-id, or both. | ||
The most relevant quota is chosen for each connection. | ||
All connections within a quota group share the same quota. | ||
It is possible to set default quotas for each (user, client-id), user or client-id group by specifying 'default' | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. | ||
|
||
<a id="nestedblock--timeouts"></a> | ||
### Nested Schema for `timeouts` | ||
|
||
Optional: | ||
|
||
- `create` (String) | ||
- `default` (String) | ||
- `delete` (String) | ||
- `read` (String) | ||
- `update` (String) | ||
|
||
## Import | ||
|
||
Import is supported using the following syntax: | ||
|
||
```shell | ||
terraform import aiven_kafka_quota.example_quota PROJECT/SERVICE_NAME | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
terraform import aiven_kafka_quota.example_quota PROJECT/SERVICE_NAME |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
resource "aiven_kafka_quota" "example_quota" { | ||
project = data.aiven_project.foo.project | ||
service_name = aiven_kafka.example_kafka.service_name | ||
user = "example-kafka-user" | ||
client_id = "example_client" | ||
consumer_byte_rate = 1000 | ||
producer_byte_rate = 1000 | ||
request_percentage = 50 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,223 @@ | ||
package acctest | ||
|
||
import ( | ||
"bytes" | ||
"fmt" | ||
"sort" | ||
"strings" | ||
"testing" | ||
"text/template" | ||
) | ||
|
||
// ResourceConfig is the interface that all resource configs must implement | ||
type resourceConfig interface { | ||
// ToMap converts the config to a map for template rendering | ||
ToMap() map[string]any | ||
} | ||
|
||
// Template represents a single Terraform configuration template | ||
type Template struct { | ||
Name string | ||
Template string | ||
} | ||
|
||
// TemplateRegistry holds templates for a specific resource type | ||
type TemplateRegistry struct { | ||
resourceName string | ||
templates map[string]*template.Template | ||
funcMap template.FuncMap | ||
} | ||
|
||
// NewTemplateRegistry creates a new template registry for a resource | ||
func NewTemplateRegistry(resourceName string) *TemplateRegistry { | ||
return &TemplateRegistry{ | ||
resourceName: resourceName, | ||
templates: make(map[string]*template.Template), | ||
funcMap: make(template.FuncMap), | ||
} | ||
} | ||
|
||
// AddTemplate adds a new template to the registry | ||
func (r *TemplateRegistry) AddTemplate(t testing.TB, name, templateStr string) error { | ||
t.Helper() | ||
|
||
tmpl := template.New(name) | ||
if len(r.funcMap) > 0 { | ||
tmpl = tmpl.Funcs(r.funcMap) | ||
} | ||
|
||
parsed, err := tmpl.Parse(templateStr) | ||
if err != nil { | ||
return fmt.Errorf("failed to parse template: %w", err) | ||
} | ||
r.templates[name] = parsed | ||
|
||
return nil | ||
} | ||
|
||
// MustAddTemplate is like AddTemplate but panics on error | ||
func (r *TemplateRegistry) MustAddTemplate(t testing.TB, name, templateStr string) { | ||
t.Helper() | ||
|
||
if err := r.AddTemplate(t, name, templateStr); err != nil { | ||
t.Fatal(err) | ||
} | ||
} | ||
|
||
// Render renders a template with the given config | ||
func (r *TemplateRegistry) Render(t testing.TB, templateKey string, cfg map[string]any) (string, error) { | ||
t.Helper() | ||
|
||
tmpl, exists := r.templates[templateKey] | ||
if !exists { | ||
availableTemplates := r.getAvailableTemplates() | ||
|
||
return "", fmt.Errorf("template %q does not exist for resource %s. Available templates: %v", | ||
templateKey, | ||
r.resourceName, | ||
availableTemplates, | ||
) | ||
} | ||
|
||
var buf bytes.Buffer | ||
if err := tmpl.Execute(&buf, cfg); err != nil { | ||
return "", fmt.Errorf("failed to render template: %w", err) | ||
} | ||
|
||
return buf.String(), nil | ||
} | ||
|
||
// MustRender is like Render but fails the test on error | ||
func (r *TemplateRegistry) MustRender(t testing.TB, templateKey string, cfg map[string]any) string { | ||
t.Helper() | ||
|
||
result, err := r.Render(t, templateKey, cfg) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
return result | ||
} | ||
|
||
// AddFunction adds a custom function to the template registry | ||
func (r *TemplateRegistry) AddFunction(name string, fn interface{}) { | ||
if r.funcMap == nil { | ||
r.funcMap = make(template.FuncMap) | ||
} | ||
r.funcMap[name] = fn | ||
} | ||
|
||
// HasTemplate checks if a template exists in the registry | ||
func (r *TemplateRegistry) HasTemplate(key string) bool { | ||
_, exists := r.templates[key] | ||
return exists | ||
} | ||
|
||
// RemoveTemplate removes a template from the registry | ||
func (r *TemplateRegistry) RemoveTemplate(key string) { | ||
delete(r.templates, key) | ||
} | ||
|
||
// getAvailableTemplates returns a sorted list of available template keys | ||
func (r *TemplateRegistry) getAvailableTemplates() []string { | ||
templates := make([]string, 0, len(r.templates)) | ||
for k := range r.templates { | ||
templates = append(templates, k) | ||
} | ||
sort.Strings(templates) | ||
|
||
return templates | ||
} | ||
|
||
// compositionEntry represents a combination of template and its config | ||
type compositionEntry struct { | ||
TemplateKey string | ||
Config map[string]any | ||
} | ||
|
||
// CompositionBuilder helps build complex compositions of templates | ||
type CompositionBuilder struct { | ||
registry *TemplateRegistry | ||
compositions []compositionEntry | ||
} | ||
|
||
// NewCompositionBuilder creates a new composition builder | ||
func (r *TemplateRegistry) NewCompositionBuilder() *CompositionBuilder { | ||
return &CompositionBuilder{ | ||
registry: r, | ||
compositions: make([]compositionEntry, 0), | ||
} | ||
} | ||
|
||
// Add adds a new template and config to the composition | ||
func (b *CompositionBuilder) Add(templateKey string, cfg map[string]any) *CompositionBuilder { | ||
b.compositions = append(b.compositions, compositionEntry{ | ||
TemplateKey: templateKey, | ||
Config: cfg, | ||
}) | ||
return b | ||
} | ||
|
||
// AddWithConfig adds a new template and config to the composition using a resourceConfig | ||
func (b *CompositionBuilder) AddWithConfig(templateKey string, cfg resourceConfig) *CompositionBuilder { | ||
b.compositions = append(b.compositions, compositionEntry{ | ||
TemplateKey: templateKey, | ||
Config: cfg.ToMap(), | ||
}) | ||
return b | ||
} | ||
|
||
// AddIf conditional method to CompositionBuilder | ||
func (b *CompositionBuilder) AddIf(condition bool, templateKey string, cfg map[string]any) *CompositionBuilder { | ||
if condition { | ||
return b.Add(templateKey, cfg) | ||
} | ||
|
||
return b | ||
} | ||
|
||
func (b *CompositionBuilder) Remove(templateKey string) *CompositionBuilder { | ||
var newCompositions []compositionEntry | ||
for _, comp := range b.compositions { | ||
if comp.TemplateKey != templateKey { | ||
newCompositions = append(newCompositions, comp) | ||
} | ||
} | ||
b.compositions = newCompositions | ||
|
||
return b | ||
} | ||
|
||
// Render renders all templates in the composition and combines them | ||
func (b *CompositionBuilder) Render(t testing.TB) (string, error) { | ||
t.Helper() | ||
|
||
var renderedParts []string | ||
Check failure on line 195 in internal/acctest/template.go GitHub Actions / make_lint
|
||
|
||
// Render each template | ||
for _, comp := range b.compositions { | ||
rendered, err := b.registry.Render(t, comp.TemplateKey, comp.Config) | ||
if err != nil { | ||
return "", fmt.Errorf("failed to render template %s: %w", comp.TemplateKey, err) | ||
} | ||
renderedParts = append(renderedParts, rendered) | ||
} | ||
|
||
// Combine all rendered parts | ||
combined := strings.Join(renderedParts, "\n\n") | ||
|
||
//TODO: add HCL validation? | ||
|
||
return combined, nil | ||
} | ||
|
||
// MustRender is like Render but fails the test on error | ||
func (b *CompositionBuilder) MustRender(t testing.TB) string { | ||
t.Helper() | ||
|
||
result, err := b.Render(t) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
return result | ||
} |
Oops, something went wrong.