-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Open
Description
I found an issue with this document.
Title: Build Secrets
Location: https://fly.io/docs/apps/build-secrets/
Source: https://github.com/superfly/docs/blob/main/apps/build-secrets.html.md
Describe the issue
Example "Automate the inclusion of build secrets using an ephemeral Machine" has this script line:
flyctl secrets list --json | jq -r ".[].Name"
flyctl
returns a list of secrets in JSON, and jq
picks name property from each object in array.
It returns a list of null
instead of secret names.
This is due to change of property name from Name
to name
(lowercase "n").
I urge to change line to:
flyctl secrets list --json | jq -r ".[].name"
aklos
Metadata
Metadata
Assignees
Labels
No labels