MongoDB Atlas Setup
The Pulumi MongoDB Atlas provider uses the MongoDB Atlas SDK to manage and provision resources.
Pulumi relies on the MongoDB Atlas SDK to authenticate requests from your computer to MongoDB Atlas. Your credentials are never sent to pulumi.com.
The Pulumi MongoDB Atlas Provider needs to be configured with MongoDB Atlas credentials before it can be used to manage resources.
Configuring Credentials
In order to communicate your configuration details to Pulumi:
Set the environment variables
MONGODB_ATLAS_PUBLIC_KEY
andMONGODB_ATLAS_PRIVATE_KEY
:$ export MONGODB_ATLAS_PUBLIC_KEY=XXXXXXXXXXXXXX $ export MONGODB_ATLAS_PRIVATE_KEY=YYYYYYYYYYYYYY
Set them using configuration, if you prefer that they be stored alongside your Pulumi stack for easy multi-user access:
$ pulumi config set mongodbatlas:publicKey XXXXXXXXXXXXXX --secret $ pulumi config set mongodbatlas:privateKey YYYYYYYYYYYYYY --secret
If you are going to set mongodbatlas:privateKey
and mongodbatlas:publicKey
, please remember to pass --secret
so that they is properly encrypted. A full set
of configuration parameters can be found listed on the Project README.