You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 26, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+22-1Lines changed: 22 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -561,7 +561,7 @@ spec:
561
561
562
562
You can scrape values from SSM Parameter Store individually or by providing a path to fetch all keys inside.
563
563
564
-
Additionally you can also scrape all sub paths (child paths) if you need to. The default is not to scrape child paths
564
+
When fetching all keys by path, you can also recursively scrape all the sub paths (child paths) if you need to. The default is not to scrape child paths.
565
565
566
566
```yml
567
567
apiVersion: kubernetes-client.io/v1
@@ -580,6 +580,27 @@ spec:
580
580
- path: /extra-people/
581
581
recursive: false
582
582
```
583
+
584
+
`data` and `dataFrom` retrieve the latest version of the parameter by default. If you want to get values for a specific version, you can append the version number to the key:
585
+
586
+
```yml
587
+
apiVersion: kubernetes-client.io/v1
588
+
kind: ExternalSecret
589
+
metadata:
590
+
name: hello-service
591
+
spec:
592
+
backendType: systemManager
593
+
# optional: specify role to assume when retrieving the data
594
+
roleArn: arn:aws:iam::123456789012:role/test-role
595
+
# optional: specify region
596
+
region: us-east-1
597
+
dataFrom:
598
+
- hello-service/credentials:3
599
+
data:
600
+
- key: /foo/name
601
+
name: fooName:5
602
+
```
603
+
583
604
### Akeyless Vault
584
605
585
606
kubernetes-external-secrets supports fetching secrets from [Akeyless Vault](https://www.akeyless.io/), .
0 commit comments