-
Notifications
You must be signed in to change notification settings - Fork 189
doc: Unify credential variables in docs and examples #3277
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
APIx bot: a message has been sent to Docs Slack channel |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
examples/starter/Readme.md
Outdated
@@ -26,8 +26,8 @@ You can refer to the MongoDB Atlas documentation to know about the region names | |||
This can be done using environment variables: | |||
|
|||
```bash | |||
export MONGODB_ATLAS_PUBLIC_KEY="xxxx" | |||
export MONGODB_ATLAS_PRIVATE_KEY="xxxx" | |||
export MONGODB_ATLAS_PUBLIC_KEY="<YOUR_ATLAS_PUBLIC_KEY>" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
export MONGODB_ATLAS_PUBLIC_KEY="<YOUR_ATLAS_PUBLIC_KEY>" | |
export MONGODB_ATLAS_PUBLIC_KEY="<ATLAS_PUBLIC_KEY>" |
nit: the YOUR_
prefix sounds redundant (applies to all cases)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that's fair, changed here: 7d2902c
docs/guides/0.9.1-upgrade-guide.md
Outdated
@@ -35,7 +35,7 @@ resource "mongodbatlas_cloud_provider_access_authorization" "auth" { | |||
role_id = mongodbatlas_cloud_provider_access_setup.unique.role_id | |||
|
|||
aws = { | |||
iam_assumed_role_arn = "arn:aws:iam::772401394250:role/test-user-role" | |||
iam_assumed_role_arn = "arn:aws:iam::<YOUR_ACCOUNT_ID>:role/test-user-role" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
iam_assumed_role_arn = "arn:aws:iam::<YOUR_ACCOUNT_ID>:role/test-user-role" | |
iam_assumed_role_arn = "arn:aws:iam::<YOUR_AWS_ACCOUNT_ID>:role/test-user-role" |
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed here to AWS_ACCOUNT_ID following Agustin's suggestion to drop "YOUR_": 7d2902c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Description
Unify credential variables in docs and examples
Link to any related issue(s): CLOUDP-312826
Type of change:
Required Checklist:
Further comments