Skip to content

Commit

Permalink
Merge pull request tailwarden#1050 from jbleduigou/fix-aws-path-in-doc
Browse files Browse the repository at this point in the history
doc: path is a string and should use double quotes
  • Loading branch information
mlabouardy authored Oct 8, 2023
2 parents 25301fb + 6085915 commit 52d7ea0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ An example configuration entry for configuring a Google Cloud account in the **`
[[gcp]]
name="production"
source="ENVIRONMENT_VARIABLES"
# path=./path/to/credentials/file specify if 'CREDENTIALS_FILE' is used as source
# path="./path/to/credentials/file" specify if 'CREDENTIALS_FILE' is used as source
profile="production"
```
Expand Down
8 changes: 4 additions & 4 deletions docs/configuration/cloud-providers/aws.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -98,19 +98,19 @@ Add to config.toml file
[[aws]]
name="sandbox"
source="CREDENTIALS_FILE"
path=./path/to/credentials/file
path="./path/to/credentials/file"
profile="default"
[[aws]]
name="staging"
source="CREDENTIALS_FILE"
path=./path/to/credentials/file
path="./path/to/credentials/file"
profile="staging-account"
[[gcp]]
name="production"
source="ENVIRONMENT_VARIABLES"
# path=./path/to/credentials/file specify if CREDENTIALS_FILE is used
# path="./path/to/credentials/file" specify if CREDENTIALS_FILE is used
profile="production"
[postgres]
Expand All @@ -137,7 +137,7 @@ profile="production"
[[aws]]
name="sandbox"
source="CREDENTIALS_FILE"
path=./path/to/credentials/file
path="./path/to/credentials/file"
profile="default"
```
### Credentials file
Expand Down
6 changes: 3 additions & 3 deletions docs/getting-started/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,19 @@ The reason for this external data persistence is to improve the filtering, sorti
[[aws]]
name="sandbox"
source="CREDENTIALS_FILE"
path=./path/to/credentials/file
path="./path/to/credentials/file"
profile="default"
[[aws]]
name="staging"
source="CREDENTIALS_FILE"
path=./path/to/credentials/file
path="./path/to/credentials/file"
profile="staging-account"
[[gcp]]
name="production"
source="ENVIRONMENT_VARIABLES"
# path=./path/to/credentials/file specify if CREDENTIALS_FILE is used
# path="./path/to/credentials/file" specify if CREDENTIALS_FILE is used
profile="production"
[postgres]
Expand Down

0 comments on commit 52d7ea0

Please sign in to comment.