From 19a02499195ae96f525290b49735767b095cc5b0 Mon Sep 17 00:00:00 2001 From: kyuan-mongodb <78768401+kyuan-mongodb@users.noreply.github.com> Date: Tue, 26 Sep 2023 18:21:50 -0400 Subject: [PATCH] DOCSP-32298 adds compatibility info to landing and connection page --- source/fundamentals/connection.txt | 11 +++++++++++ source/includes/fact-environments.rst | 7 +++++++ source/index.txt | 8 ++++++++ 3 files changed, 26 insertions(+) create mode 100644 source/includes/fact-environments.rst diff --git a/source/fundamentals/connection.txt b/source/fundamentals/connection.txt index f115fc3d..1507ae12 100644 --- a/source/fundamentals/connection.txt +++ b/source/fundamentals/connection.txt @@ -19,6 +19,17 @@ Connection Guide This guide shows you how to connect to a MongoDB instance or replica set deployment using the Go Driver. +------------- +Compatibility +------------- + +You can use the {+driver-short+} to connect to deployments hosted in the +following environments: + +.. include:: /includes/fact-environments.rst + +.. _golang-connection-uri: + -------------- Connection URI -------------- diff --git a/source/includes/fact-environments.rst b/source/includes/fact-environments.rst new file mode 100644 index 00000000..0cae4338 --- /dev/null +++ b/source/includes/fact-environments.rst @@ -0,0 +1,7 @@ +- `MongoDB Atlas + `__: The fully + managed service for MongoDB deployments in the cloud +- :ref:`MongoDB Enterprise `: The + subscription-based, self-managed version of MongoDB +- :ref:`MongoDB Community `: The + source-available, free-to-use, and self-managed version of MongoDB diff --git a/source/index.txt b/source/index.txt index 25565a84..533b94fc 100644 --- a/source/index.txt +++ b/source/index.txt @@ -34,6 +34,14 @@ You can add the driver to your application to work with MongoDB in Go. Download it using `go get `__ or set up a runnable project by following our Quick Start guide. +Compatibility +------------- + +You can use the {+driver-short+} to connect to deployments hosted in the +following environments: + +.. include:: /includes/fact-environments.rst + Quick Start -----------