From 4d22e8bebaaee81cf66167db5f940e5344b9be6c Mon Sep 17 00:00:00 2001 From: Noah Stride Date: Wed, 18 Dec 2024 13:22:17 +0000 Subject: [PATCH] Fix incorrect CLI flag name in README Signed-off-by: Noah Stride --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4ac1bd2..5cfe346 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ $ aws-spiffe-workload-helper x509-credential-file \ --profile-arn arn:aws:rolesanywhere:us-east-1:123456789012:profile/0000000-0000-0000-0000-000000000000 \ --role-arn arn:aws:iam::123456789012:role/example-role \ --workload-api-addr unix:///opt/workload-api.sock \ - --aws-credentials-file /opt/my-aws-credentials-file + --aws-credentials-path /opt/my-aws-credentials-file ``` ###### Reference @@ -121,7 +121,7 @@ $ aws-spiffe-workload-helper x509-credential-file \ | region | No | Overrides AWS region to use when exchanging the SVID for AWS credentials. Optional. | `us-east-1` | | session-duration | No | The duration, in seconds, of the resulting session. Optional. Can range from 15 minutes (900) to 12 hours (43200). | `3600` | | workload-api-addr | No | Overrides the address of the Workload API endpoint that will be use to fetch the X509 SVID. If unspecified, the value from the SPIFFE_ENDPOINT_SOCKET environment variable will be used. | `unix:///opt/my/path/workload.sock` | -| aws-credentials-path | Yes | The path to the AWS credentials file to write. | `/opt/my-aws-credentials-file | +| aws-credentials-path | Yes | The path to the AWS credentials file to write. | `/opt/my-aws-credentials-file` | | force | No | If set, failures loading the existing AWS credentials file will be ignored and the contents overwritten. | | | replace | No | If set, the AWS credentials file will be replaced if it exists. This will remove any profiles not written by this tool. | |