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
2 changes: 2 additions & 0 deletions audit/common/Constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ const (
Django = "Django Integration"
Drivers = "Drivers"
EnterpriseKubernetesOperator = "Enterprise Kubernetes Operator"
EFCoreProvider = "Entity Framework Core Provider"
KafkaConnector = "Kafka Connector"
MCPServer = "MongoDB MCP Server"
MDBCLI = "MongoDB CLI"
Expand All @@ -94,6 +95,7 @@ const (
OnlineArchive = "Online Archive"
Search = "Search"
StreamProcessing = "Stream Processing"
Terraform = "Terraform"
Triggers = "Triggers"
VectorSearch = "Vector Search"

Expand Down
11 changes: 8 additions & 3 deletions audit/common/GetProductInfo.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ var productInfoMap = map[string]ProductInfo{
ProductType: CollectionIsProduct,
SubProduct: "",
},
"entity-framework": { // TODO: "Entity Framework Core Provider" DOCSP-50997 to add to taxonomy
ProductName: Drivers,
"entity-framework": {
ProductName: EFCoreProvider,
ProductType: CollectionIsProduct,
SubProduct: "",
},
Expand Down Expand Up @@ -182,7 +182,7 @@ var productInfoMap = map[string]ProductInfo{
ProductType: CollectionIsProduct,
SubProduct: "",
},
"mcp-server": { // DOCSP-50997 to add to taxonomy
"mcp-server": {
ProductName: MCPServer,
ProductType: CollectionIsProduct,
SubProduct: "",
Expand Down Expand Up @@ -257,6 +257,11 @@ var productInfoMap = map[string]ProductInfo{
ProductType: CollectionIsProduct,
SubProduct: "",
},
"terraform": {
ProductName: Atlas,
ProductType: DirIsSubProduct,
SubProduct: Terraform,
},
"triggers": {
ProductName: Atlas,
ProductType: DirIsSubProduct,
Expand Down