Skip to content

Commit 01c0b52

Browse files
committed
chore: resolve further markdown lint errors
1 parent 44d818a commit 01c0b52

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,13 @@ Before the doing the following, make sure your Daemon is running. If using Colim
130130

131131
3. Sign in with AWS SSO:
132132

133-
```bash
134-
aws sso login
135-
```
133+
```bash
134+
aws sso login
135+
```
136136

137-
**Note:** See the Developer Onboarding Guide on the "Using AWS SSO for Local Development" page on Confluence to set up service profile selection on your local machine. This is essential as the `~/.aws` directory is mounted to the container, so it can use the SSO session for AWS authentication.
137+
**Note:** See the Developer Onboarding Guide on the "Using AWS SSO for Local Development" page on Confluence to set up service profile selection on your local machine. This is essential as the `~/.aws` directory is mounted to the container, so it can use the SSO session for AWS authentication.
138138

139-
1. Run the image.
139+
4. Run the image.
140140

141141
```bash
142142
docker run --platform linux/amd64 -p 9000:8080 \
@@ -164,7 +164,7 @@ Before the doing the following, make sure your Daemon is running. If using Colim
164164

165165
Once the container is running, a local endpoint is created at `localhost:9000/2015-03-31/functions/function/invocations`.
166166

167-
2. Check the container is running (Optional).
167+
5. Check the container is running (Optional).
168168

169169
```bash
170170
docker ps
@@ -177,15 +177,15 @@ Before the doing the following, make sure your Daemon is running. If using Colim
177177
ca890d30e24d github-repository-archive-script "/lambda-entrypoint.…" 5 seconds ago Up 4 seconds 0.0.0.0:9000->8080/tcp, :::9000->8080/tcp recursing_bartik
178178
```
179179

180-
3. Post to the endpoint (`localhost:9000/2015-03-31/functions/function/invocations`).
180+
6. Post to the endpoint (`localhost:9000/2015-03-31/functions/function/invocations`).
181181

182182
```bash
183183
curl "http://localhost:9000/2015-03-31/functions/function/invocations" -d '{}'
184184
```
185185

186186
This will run the Lambda function and, once complete, will return a success message.
187187

188-
4. After testing stop the container.
188+
7. After testing stop the container.
189189

190190
```bash
191191
docker stop <container_id>
@@ -208,15 +208,15 @@ To run the Lambda function outside of a container, we need to execute the `handl
208208
209209
2. Sign in with AWS SSO, and export the correct profile for this service:
210210
211-
```bash
212-
aws sso login
211+
```bash
212+
aws sso login
213213

214-
export AWS_PROFILE=github-repository-archive-script
215-
```
214+
export AWS_PROFILE=github-repository-archive-script
215+
```
216216
217-
This allows you to assume the AWS IAM role for the service, enabling the most secure development experience. This also means you will have limited permissions until you exit out of the profile.
217+
This allows you to assume the AWS IAM role for the service, enabling the most secure development experience. This also means you will have limited permissions until you exit out of the profile.
218218
219-
**Note:** See the Developer Onboarding Guide on the "Using AWS SSO for Local Development" page on Confluence to set up service profile selection on your local machine.
219+
**Note:** See the Developer Onboarding Guide on the "Using AWS SSO for Local Development" page on Confluence to set up service profile selection on your local machine.
220220
221221
3. Export the required environment variables:
222222

0 commit comments

Comments
 (0)