Skip to content

Commit

Permalink
v2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
72636c committed Dec 20, 2023
1 parent 7378736 commit d21db13
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ For secrets in the same AWS account as the agent, you can use the secret name ra
steps:
- commands: 'echo \$MY_SECRET'
plugins:
- seek-oss/aws-sm#v2.3.1:
- seek-oss/aws-sm#v2.3.2:
env:
MY_SECRET: my-secret-id
MY_OTHER_SECRET: my-other-secret-id
Expand All @@ -66,7 +66,7 @@ For Secrets in JSON (e.g. you're using AWS SMs key=value support), a `jq`-compat
steps:
- commands: 'echo \$MY_SECRET'
plugins:
- seek-oss/aws-sm#v2.3.1:
- seek-oss/aws-sm#v2.3.2:
env:
MY_SECRET:
secret-id: "my-secret-id"
Expand All @@ -80,7 +80,7 @@ steps:
steps:
- commands: 'echo \$MY_SECRET'
plugins:
- seek-oss/aws-sm#v2.3.1:
- seek-oss/aws-sm#v2.3.2:
json-to-env:
- secret-id: "my-secret-id"
json-key: ".Variables"
Expand Down Expand Up @@ -113,7 +113,7 @@ For secrets in another AWS account, use the secret ARN.
steps:
- commands: 'echo \$SECRET_FROM_OTHER_ACCOUNT'
plugins:
- seek-oss/aws-sm#v2.3.1:
- seek-oss/aws-sm#v2.3.2:
env:
SECRET_FROM_OTHER_ACCOUNT: "arn:aws:secretsmanager:ap-southeast-2:1234567:secret:my-global-secret"
file:
Expand All @@ -130,7 +130,7 @@ In this case, you can either use the ARN syntax to deduce the region from the se
steps:
- commands: 'echo \$SECRET_FROM_OTHER_REGION'
plugins:
- seek-oss/aws-sm#v2.3.1:
- seek-oss/aws-sm#v2.3.2:
region: us-east-1
env:
SECRET_FROM_OTHER_REGION: my-secret-id
Expand All @@ -145,7 +145,7 @@ for increased security.
steps:
- commands: 'echo \$MY_SECRET'
plugins:
- seek-oss/aws-sm#v2.3.1:
- seek-oss/aws-sm#v2.3.2:
endpoint-url: https://vpce-12345-abcd.secretsmanager.us-east-1.vpce.amazonaws.com
env:
MY_SECRET: my-secret-id
Expand All @@ -160,7 +160,7 @@ It's thus possible to use secrets from this plugin in another plugin:
steps:
- command: npm publish
plugins:
- seek-oss/aws-sm#v2.3.1:
- seek-oss/aws-sm#v2.3.2:
env:
MY_TOKEN: npm-publish-token
- seek-oss/private-npm#v1.1.1:
Expand All @@ -175,7 +175,7 @@ Note that if you're using the [Docker plugin](https://github.com/buildkite-plugi
steps:
- command: echo $$MY_SECRET
plugins:
- seek-oss/aws-sm#v2.3.1:
- seek-oss/aws-sm#v2.3.2:
env:
MY_SECRET: the-secret-id
- docker#v1.4.0:
Expand Down

0 comments on commit d21db13

Please sign in to comment.