Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add kafka connect resource #25

Merged
merged 12 commits into from
Nov 21, 2024
Merged

feat: Add kafka connect resource #25

merged 12 commits into from
Nov 21, 2024

Conversation

qboileau
Copy link
Member

Create new conduktor_kafka_connect_v2 resource that support Conduktor Console Kafka Connect configurations.

Usage

resource "conduktor_kafka_connect_v2" "basic" {
  name    = "basic-connect"
  cluster = conduktor_kafka_cluster_v2.minimal.name
  labels = {
    description   = "This is a complex connect using basic authentication"
    documentation = "https://docs.mycompany.com/complex-connect"
    env           = "dev"
  }
  spec {
    display_name = "Basic Connect server"
    urls         = "http://localhost:8083"
    headers = {
      X-PROJECT-HEADER = "value"
      Cache-Control : "no-cache"
    }
    ignore_untrusted_certificate = false
    security = {
      type     = "BasicAuth"
      username = "user"
      password = "password"
    }
  }
}

This PR add :

Resource terraform schema
Resource Console API models
Mapping between models
Terraform Resource implementation
Resource tests
Resource Examples
Resource documentation

@qboileau qboileau force-pushed the add-kafka-connect-resource branch from d8011cb to 75229b3 Compare November 18, 2024 14:02
@qboileau qboileau merged commit fb92dd4 into main Nov 21, 2024
9 checks passed
@qboileau qboileau deleted the add-kafka-connect-resource branch November 21, 2024 13:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants