Skip to content

Commit 50cf7e3

Browse files
authored
Update README.md (#15)
Fix missing backslash in the AWS SSM commands *Issue #, if available:* *Description of changes:* By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
1 parent 0e4828b commit 50cf7e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,13 @@ After creating a Slack app, register the secrets in your AWS account by the foll
9797
aws ssm put-parameter \
9898
--name /remote-swe/slack/bot-token \
9999
--value "your-slack-bot-token" \
100-
--type String
100+
--type String \
101101
--overwrite
102102

103103
aws ssm put-parameter \
104104
--name /remote-swe/slack/signing-secret \
105105
--value "your-slack-signing-secret" \
106-
--type String
106+
--type String \
107107
--overwrite
108108
```
109109

@@ -125,7 +125,7 @@ To interact with GitHub, you need to setup GitHub integration. You have two opti
125125
aws ssm put-parameter \
126126
--name /remote-swe/github/personal-access-token \
127127
--value "your-access-token" \
128-
--type String
128+
--type String \
129129
--overwrite
130130
```
131131

0 commit comments

Comments
 (0)