Skip to content

Commit 5306cb7

Browse files
INTMDB-799: [CFN-PI] Update the Profile examples to include quote (#73)
1 parent 0fdc7bc commit 5306cb7

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

API.md

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ To use Atlas CloudFormation resources, you must configure a "profile" with your
7777
The secret should follow this format:
7878
```
7979
SecretName: cfn/atlas/profile/{ProfileName}
80-
SecretValue: {PublicKey: {YourPublicKey}, PrivateKey: {YourPrivateKey}}
80+
SecretValue: {"PublicKey": "YourPublicKey", "PrivateKey": "YourPrivateKey"}
8181
```
8282

8383
To create a new secret for a default profile, use the [PROFILE SECRET TEMPLATE](/examples/profile-secret.yaml) file provided in this repository.
@@ -88,13 +88,13 @@ Here are some examples of how to use this template:
8888
```
8989
ProfileName: default
9090
SecretName: cfn/atlas/profile/default
91-
SecretValue = {PublicKey: xxxxxxx , PrivateKey: yyyyyyyy}
91+
SecretValue: {"PublicKey": "YourPublicKey", "PrivateKey": "YourPrivateKey"}
9292
```
9393
#### example 2:
9494
```
95-
ProfileName: tetProfile1
96-
SecretName: cfn/atlas/profile/tetProfile1
97-
SecretValue = {PublicKey: zzzzzzzzzz , PrivateKey:jjjjjjjjj}
95+
ProfileName: testProfile
96+
SecretName: cfn/atlas/profile/testProfile
97+
SecretValue: {"PublicKey": "YourPublicKey", "PrivateKey": "YourPrivateKey"}
9898
```
9999

100100
## Contributing

0 commit comments

Comments
 (0)