Skip to content

Commit

Permalink
Introduce quarkus-kafka-streams-processor
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Dec 19, 2023
1 parent d7fc4fd commit aa40771
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ terraform-scripts/quarkus-jnosql.tf @quarkiverse/quark
terraform-scripts/quarkus-jooq.tf @quarkiverse/quarkiverse-jooq
terraform-scripts/quarkus-jpastreamer.tf @quarkiverse/quarkiverse-jpastreamer
terraform-scripts/quarkus-jsch.tf @quarkiverse/quarkiverse-jsch
terraform-scripts/quarkus-kafka-streams-processor.tf @quarkiverse/quarkiverse-kafka-streams-processor
terraform-scripts/quarkus-kerberos.tf @quarkiverse/quarkiverse-kerberos
terraform-scripts/quarkus-langchain4j.tf @quarkiverse/quarkiverse-langchain4j
terraform-scripts/quarkus-logging-cloudwatch.tf @quarkiverse/quarkiverse-logging-cloudwatch
Expand Down
36 changes: 36 additions & 0 deletions terraform-scripts/quarkus-kafka-streams-processor.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Create repository
resource "github_repository" "quarkus_kafka_streams_processor" {
name = "quarkus-kafka-streams-processor"
description = "Easily build resilient Kafka Streams topologies based on the Processor API"
homepage_url = "https://docs.quarkiverse.io/quarkus-kafka-streams-processor/dev/index.html"
allow_update_branch = true
archive_on_destroy = true
delete_branch_on_merge = true
has_issues = true
vulnerability_alerts = true
topics = ["quarkus-extension", "kafka-streams", "resiliency"]
}

# Create team
resource "github_team" "quarkus_kafka_streams_processor" {
name = "quarkiverse-kafka-streams-processor"
description = "kafka-streams-processor team"
create_default_maintainer = false
privacy = "closed"
parent_team_id = data.github_team.quarkiverse_members.id
}

# Add team to repository
resource "github_team_repository" "quarkus_kafka_streams_processor" {
team_id = github_team.quarkus_kafka_streams_processor.id
repository = github_repository.quarkus_kafka_streams_processor.name
permission = "maintain"
}

# Add users to the team
resource "github_team_membership" "quarkus_kafka_streams_processor" {
for_each = { for tm in ["edeweerd1A", "flazarus1A", "lmartella1", "tryasta", "rquinio1A", "vietk"] : tm => tm }
team_id = github_team.quarkus_kafka_streams_processor.id
username = each.value
role = "maintainer"
}

0 comments on commit aa40771

Please sign in to comment.