From ff71156aeb420195b1b9c303d78c79df95d5a568 Mon Sep 17 00:00:00 2001 From: Andrej Petras Date: Thu, 30 Apr 2026 12:33:02 +0200 Subject: [PATCH] chore: remove onecx-example product --- terraform-scripts/main.tf | 4 --- .../products/onecx-ai-agents/product.tf | 4 +-- .../products/onecx-example/product.tf | 36 ------------------- .../products/onecx-example/team.csv | 6 ---- 4 files changed, 2 insertions(+), 48 deletions(-) delete mode 100644 terraform-scripts/products/onecx-example/product.tf delete mode 100644 terraform-scripts/products/onecx-example/team.csv diff --git a/terraform-scripts/main.tf b/terraform-scripts/main.tf index fed6221..f12df55 100644 --- a/terraform-scripts/main.tf +++ b/terraform-scripts/main.tf @@ -62,10 +62,6 @@ module "onecx-shell" { source = "./products/onecx-shell" } -module "onecx-example" { - source = "./products/onecx-example" -} - module "onecx-data-orchestrator" { source = "./products/onecx-data-orchestrator" } diff --git a/terraform-scripts/products/onecx-ai-agents/product.tf b/terraform-scripts/products/onecx-ai-agents/product.tf index 5470018..63af7f3 100644 --- a/terraform-scripts/products/onecx-ai-agents/product.tf +++ b/terraform-scripts/products/onecx-ai-agents/product.tf @@ -10,7 +10,7 @@ module "onecx-ai-agents-team" { module "onecx-ai-agents-init" { source = "../../modules/base" repository_name = "onecx-ai-agents-init" - repository_description = "Initialization script for creating new workspaces containing all necessary AI instructions to get started with a new OneCX project." + repository_description = "Initialization script for creating new workspaces containing AI instructions to get started with a new OneCX project in an AI-accelerated manner." homepage_url = "https://onecx.github.io/docs/documentation/current/" topics = ["ai", "agents", "skills", "prompts", "instructions"] team_id = module.onecx-ai-agents-team.team_id @@ -20,7 +20,7 @@ module "onecx-ai-agents-init" { module "onecx-ai-agents-toolkit" { source = "../../modules/base" repository_name = "onecx-ai-agents-toolkit" - repository_description = "AI-Toolkit containing various use-case specific Skills, Agents, Prompts and Instrctions that simplify working with OneCX." + repository_description = "AI-Toolkit containing various use-case specific Skills, Agents, Prompts and Instructions that simplify working with OneCX." homepage_url = "https://onecx.github.io/docs/documentation/current/" topics = ["ai", "agents", "skills", "prompts", "instructions"] team_id = module.onecx-ai-agents-team.team_id diff --git a/terraform-scripts/products/onecx-example/product.tf b/terraform-scripts/products/onecx-example/product.tf deleted file mode 100644 index ae4b460..0000000 --- a/terraform-scripts/products/onecx-example/product.tf +++ /dev/null @@ -1,36 +0,0 @@ - -# TEAM ONECX-EXAMPLE -module "onecx-example-team" { - source = "../../modules/github/team" - team_name = "onecx-example" - team_description = "OneCX example services team" - team_members_file_path = "products/onecx-example/team.csv" -} - -# ONECX-EXAMPLE -module "onecx-example" { - source = "../../modules/product" - repository_name = "onecx-example" - repository_description = "OneCX example" - topics = ["product", "example"] - team_id = module.onecx-example-team.team_id - team_name = module.onecx-example-team.team_name -} - -# ONECX-EXAMPLE-CUSTOM-AUTH-UI -module "onecx-example-custom-auth-ui" { - source = "../../modules/angular" - repository_name = "onecx-example-custom-auth-ui" - repository_description = "OneCX Example Custom Auth UI" - topics = ["angular", "ui", "example"] - team_id = module.onecx-example-team.team_id -} - -# ONECX-EXAMPLE-CUSTOM-AUTH-BFF -module "onecx-example-custom-auth-bff" { - source = "../../modules/quarkus" - repository_name = "onecx-example-custom-auth-bff" - repository_description = "OneCX Example Custom Auth Backend-For-Frontend" - topics = ["java", "quarkus", "bff", "example"] - team_id = module.onecx-example-team.team_id -} diff --git a/terraform-scripts/products/onecx-example/team.csv b/terraform-scripts/products/onecx-example/team.csv deleted file mode 100644 index 3d29a5c..0000000 --- a/terraform-scripts/products/onecx-example/team.csv +++ /dev/null @@ -1,6 +0,0 @@ -username,role -andrejpetras,maintainer -milanhorvath,maintainer -HenryTaeschner,maintainer -SchettlerKoehler,maintainer -JordenReuter,maintainer \ No newline at end of file