Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions terraform-scripts/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,8 @@ module "onecx-chat" {

module "onecx-service" {
source = "./products/onecx-service"
}

module "onecx-notification" {
source = "./products/onecx-notification"
}
50 changes: 50 additions & 0 deletions terraform-scripts/products/onecx-notification/product.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@

# TEAM ONECX-NOTIFICATION
module "onecx-notification-team" {
source = "../../modules/github/team"
team_name = "onecx-notification"
team_description = "OneCX notification services team"
team_members_file_path = "products/onecx-notification/team.csv"
}

# ONECX-NOTIFICATION
module "onecx-notification" {
source = "../../modules/product"
repository_name = "onecx-notification"
repository_description = "OneCX Notification"
homepage_url = "https://onecx.github.io/docs/onecx-notification/current/general"
topics = ["product", "notification"]
team_id = module.onecx-notification-team.team_id
team_name = module.onecx-notification-team.team_name
}

# ONECX-NOTIFICATION-SVC
module "onecx-notification-svc" {
source = "../../modules/quarkus"
repository_name = "onecx-notification-svc"
repository_description = "OneCX Notification Backend Service"
homepage_url = "https://onecx.github.io/docs/onecx-notification/current/onecx-notification-svc"
topics = ["java", "quarkus", "svc", "notification"]
team_id = module.onecx-notification-team.team_id
}

# ONECX-NOTIFICATION-BFF
module "onecx-notification-bff" {
source = "../../modules/quarkus"
repository_name = "onecx-notification-bff"
repository_description = "OneCX Notification Backend-For-Frontend"
homepage_url = "https://onecx.github.io/docs/onecx-notification/current/onecx-notification-bff"
topics = ["java", "quarkus", "bff", "notification"]
team_id = module.onecx-notification-team.team_id
}

# ONECX-NOTIFICATION-UI
module "onecx-notification-ui" {
source = "../../modules/angular"
repository_name = "onecx-notification-ui"
repository_description = "OneCX Notification UI"
homepage_url = "https://onecx.github.io/docs/onecx-notification/current/onecx-notification-ui"
topics = ["angular", "ui", "notification"]
team_id = module.onecx-notification-team.team_id
}

6 changes: 6 additions & 0 deletions terraform-scripts/products/onecx-notification/team.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
username,role
andrejpetras,maintainer
milanhorvath,maintainer
HenryTaeschner,maintainer
SchettlerKoehler,maintainer
JordenReuter,maintainer
Loading