skip to Main Content

Do EKS Secrets are encrypted by default?

I was going by this update for EKS https://aws.amazon.com/about-aws/whats-new/2020/03/amazon-eks-adds-envelope-encryption-for-secrets-with-aws-kms/ and this blog from AWS https://aws.amazon.com/blogs/containers/using-eks-encryption-provider-support-for-defense-in-depth/. This is a very cryptic line which never confirms whether EKS encrypts secrets or not by default In EKS, we operate the etcd volumes encrypted…

VIEW QUESTION

Define/change Kubernetes SSH key file name in a YAML – Nginx

I have a secret: apiVersion: v1 kind: Secret metadata: name: secret-ssh-auth type: kubernetes.io/ssh-auth data: ssh-privatekey: | SEVMTE9PT09PT09PT09PT09PT09PCg== and deployment: apiVersion: apps/v1 kind: Deployment metadata: name: nginx-deployment labels: app: nginx spec: replicas: 1 selector: matchLabels: app: nginx template: metadata: labels: app:…

VIEW QUESTION
Back To Top
Search