Skip to content
Merged
Show file tree
Hide file tree
Changes from 11 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
22 changes: 22 additions & 0 deletions cfn-resources/stream-workspace/.rpdk-config
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"artifact_type": "RESOURCE",
"typeName": "MongoDB::Atlas::StreamWorkspace",
"language": "go",
"runtime": "provided.al2",
"entrypoint": "bootstrap",
"testEntrypoint": "bootstrap",
"settings": {
"version": false,
"subparser_name": null,
"verbose": 0,
"force": false,
"type_name": "MongoDB::Atlas::StreamWorkspace",
"artifact_type": null,
"endpoint_url": null,
"region": null,
"target_schemas": [],
"profile": null,
"import_path": "github.com/mongodb/mongodbatlas-cloudformation-resources/stream-workspace",
"protocolVersion": "2.0.0"
}
}
33 changes: 33 additions & 0 deletions cfn-resources/stream-workspace/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
.PHONY: build test clean
tags=logging callback metrics scheduler
cgo=0
goos=linux
goarch=amd64
CFNREP_GIT_SHA?=$(shell git rev-parse HEAD)
ldXflags=-s -w -X github.com/mongodb/mongodbatlas-cloudformation-resources/util.defaultLogLevel=info -X github.com/mongodb/mongodbatlas-cloudformation-resources/version.Version=${CFNREP_GIT_SHA}
ldXflagsD=-X github.com/mongodb/mongodbatlas-cloudformation-resources/util.defaultLogLevel=debug -X github.com/mongodb/mongodbatlas-cloudformation-resources/version.Version=${CFNREP_GIT_SHA}

build:
cfn generate
env GOOS=$(goos) CGO_ENABLED=$(cgo) GOARCH=$(goarch) go build -ldflags="$(ldXflags)" -tags="$(tags)" -o bin/bootstrap cmd/main.go

debug:
cfn generate
env GOOS=$(goos) CGO_ENABLED=$(cgo) GOARCH=$(goarch) go build -ldflags="$(ldXflagsD)" -tags="$(tags)" -o bin/bootstrap cmd/main.go

clean:
rm -rf bin

create-test-resources:
@echo "==> Creating test files for contract testing"
./test/contract-testing/cfn-test-create-inputs.sh

delete-test-resources:
@echo "==> Delete test resources used for contract testing"
./test/cfn-test-delete-inputs.sh

run-contract-testing:
@echo "==> Run contract testing"
make build
sam local start-lambda &
cfn test --function-name TestEntrypoint --verbose
18 changes: 18 additions & 0 deletions cfn-resources/stream-workspace/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# MongoDB::Atlas::StreamWorkspace

## Description

Resource for managing [Stream Workspaces](https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/group/endpoint-streams).

## Requirements

Set up an AWS profile to securely give CloudFormation access to your Atlas credentials.
For instructions on setting up a profile, [see here](/README.md#mongodb-atlas-api-keys-credential-management).

## Attributes and Parameters

See the [resource docs](docs/README.md). Also refer [AWS security best practices for CloudFormation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/security-best-practices.html#creds) to manage credentials.

## CloudFormation Examples

See the examples [CFN Template](/examples/stream-workspace/stream-workspace.json) for example resource.
85 changes: 85 additions & 0 deletions cfn-resources/stream-workspace/cmd/main.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions cfn-resources/stream-workspace/cmd/resource/config.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

98 changes: 98 additions & 0 deletions cfn-resources/stream-workspace/cmd/resource/mappings.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
// Copyright 2026 MongoDB Inc
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package resource

import "go.mongodb.org/atlas-sdk/v20250312012/admin"

func NewStreamWorkspaceCreateReq(model *Model) *admin.StreamsTenant {
if model == nil {
return nil
}
dataProcessRegion := *model.DataProcessRegion
streamTenant := &admin.StreamsTenant{
Name: model.WorkspaceName,
GroupId: model.ProjectId,
DataProcessRegion: &admin.StreamsDataProcessRegion{
CloudProvider: *dataProcessRegion.CloudProvider,
Region: *dataProcessRegion.Region,
},
}
if streamConfig := model.StreamConfig; streamConfig != nil {
streamTenant.StreamConfig = &admin.StreamConfig{}
if tier := streamConfig.Tier; tier != nil {
streamTenant.StreamConfig.Tier = tier
}
if maxTierSize := streamConfig.MaxTierSize; maxTierSize != nil {
streamTenant.StreamConfig.MaxTierSize = maxTierSize
}
}
return streamTenant
}

func NewStreamWorkspaceUpdateReq(model *Model) *admin.StreamsTenantUpdateRequest {
if model == nil || model.DataProcessRegion == nil {
return nil
}
dataProcessRegion := *model.DataProcessRegion
if dataProcessRegion.Region == nil {
return nil
}
// CloudFormation is AWS-only, so CloudProvider is always AWS
cloudProvider := CloudProvider
return &admin.StreamsTenantUpdateRequest{
CloudProvider: &cloudProvider,
Region: dataProcessRegion.Region,
}
}

func newModelDataRegion(dataProcessRegion *admin.StreamsDataProcessRegion) *StreamsDataProcessRegion {
return &StreamsDataProcessRegion{
CloudProvider: &dataProcessRegion.CloudProvider,
Region: &dataProcessRegion.Region,
}
}

func newModelStreamConfig(streamConfig *admin.StreamConfig) *StreamConfig {
if streamConfig == nil {
return nil
}
modelConfig := &StreamConfig{}
if streamConfig.Tier != nil {
modelConfig.Tier = streamConfig.Tier
}
if streamConfig.MaxTierSize != nil {
modelConfig.MaxTierSize = streamConfig.MaxTierSize
}
return modelConfig
}

func GetStreamWorkspaceModel(streamTenant *admin.StreamsTenant, currentModel *Model) *Model {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

which "primary identifier fields" are being referred to here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed the vague comment

model := new(Model)

if currentModel != nil {
model = currentModel
}

if streamTenant != nil {
model.WorkspaceName = streamTenant.Name
model.DataProcessRegion = newModelDataRegion(streamTenant.DataProcessRegion)
model.StreamConfig = newModelStreamConfig(streamTenant.StreamConfig)
model.ProjectId = streamTenant.GroupId
model.Id = streamTenant.Id
model.Hostnames = streamTenant.GetHostnames()
}

return model
}
Loading
Loading