mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
14 lines
506 B
YAML
14 lines
506 B
YAML
|
---
|
||
|
# This is an example Kubernetes Secret that can be created in the Kubernetes
|
||
|
# Namespace where Ceph-CSI is deployed. The contents of this Secret will be
|
||
|
# used to connect to the Amazon KMS.
|
||
|
apiVersion: v1
|
||
|
kind: Secret
|
||
|
metadata:
|
||
|
name: ceph-csi-aws-credentials
|
||
|
stringData:
|
||
|
AWS_ACCESS_KEY_ID: "AKIAIOSFODNN7EXAMPLE"
|
||
|
AWS_SECRET_ACCESS_KEY: "JalrXUtnFEMI/K7MDENG/bPxRfiCYzEXAMPLEKEY"
|
||
|
AWS_SESSION_TOKEN: ""
|
||
|
AWS_CMK_ARN: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
|