Skip to content

Commit 2248d21

Browse files
committed
Typo
1 parent f1b473c commit 2248d21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tooling/docs-assembler/Deploying/AwsCloudFrontKeyValueStoreProxy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public void UpdateRedirects(string kvsName, IReadOnlyDictionary<string, string>
4242
ConsoleApp.Log("Describing KeyValueStore");
4343
try
4444
{
45-
var json = CaptureMultiple("/opt/homebrew/bin/aws-vault", "exec", "elastic-web", "--", "/opt/homebrew/bin/aws", "cloudfront", "describe-key-value-store", "--name", kvsName);
45+
var json = CaptureMultiple("aws", "cloudfront", "describe-key-value-store", "--name", kvsName);
4646
var describeResponse = JsonSerializer.Deserialize<DescribeKeyValueStoreResponse>(string.Concat(json), AwsCloudFrontKeyValueStoreJsonContext.Default.DescribeKeyValueStoreResponse);
4747
if (describeResponse?.ETag is not null && describeResponse.KeyValueStore is { ARN.Length: > 0 })
4848
return (describeResponse.KeyValueStore.ARN, describeResponse.ETag);

0 commit comments

Comments
 (0)