Skip to content

Commit 77ef27d

Browse files
author
JackColquitt
committed
Fixed AWS Secret typo
1 parent 57dfbc2 commit 77ef27d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/simple-editor/deployment/DeploymentModelCompose.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const getInstructions = (model : string) => {
4343
value: "ID-KEY-HERE"
4444
},
4545
{
46-
name: "AWS_SECRET_KEY",
46+
name: "AWS_SECRET",
4747
value: "TOKEN-GOES-HERE"
4848
},
4949
{

src/simple-editor/deployment/DeploymentModelKube.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const getInstructions = (model : string) => {
5858
kubectl -n trustgraph create secret \<br/>
5959
{' '}generic bedrock-credentials \<br/>
6060
{' '}--from-literal=aws-id-key=<span className="variable">AWS-ID-KEY</span> \<br/>
61-
{' '}--from-literal=aws-secret-key=<span className="variable">AWS-SECRET-KEY</span> \<br/>
61+
{' '}--from-literal=aws-secret=<span className="variable">AWS-SECRET-KEY</span> \<br/>
6262
{' '}--from-literal=aws-region=<span className="variable">AWS-REGION-HERE</span>
6363
</DeploymentCode>
6464

0 commit comments

Comments
 (0)