Skip to content

Commit

Permalink
fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
rbren committed May 11, 2023
1 parent 073fe7f commit 1427903
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/features/automation-rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -294,11 +294,11 @@ Users can store encrypted secrets into Insights and use them when creating Autom

Create a secret:
```js
curl 'https://insights.fairwinds.com/v0/organizations/$YOUR_ORG/secrets/bulk' \
-H 'Authorization: Bearer $FAIRWINDS_TOKEN' \
-H 'accept: application/json, text/plain, */*' \
-H 'content-type: application/json' \
--data-raw '[{"key": "$SECRET_KEY", "value": "$VALUE"}]'
curl "https://insights.fairwinds.com/v0/organizations/$YOUR_ORG/secrets/bulk" \
-H "Authorization: Bearer $FAIRWINDS_TOKEN" \
-H "accept: application/json, text/plain, */*" \
-H "content-type: application/json" \
--data-raw "[{\"key\": \"$SECRET_KEY\", \"value\": \"$VALUE\"}]"
```

List current secrets:
Expand Down

0 comments on commit 1427903

Please sign in to comment.