What is the best way to work with kubernetes and environment variables in containers?

0

I am currently looking for a tool that allows me to quickly and easily control the environment variables of my containers in EKS. I find myself exploring some options like AWS Secret Manager and Hashicorp's Vault. What tools would you recommend?

profile picture
EXPERT
asked 2 years ago893 views
2 Answers
2
Accepted Answer

This open source External Secrets operator can be leveraged to pull secrets from AWS Secrets Manager, AWS Parameter store, Hashicorp Vault and various other cloud secrets providers. This operator also supports EKS Fargate.

With AWS Secrets Manager, you can establish a private connection between your VPC and Secrets Manager by creating an Interface VPC endpoint which lets you privately access Secrets Manager APIs without an internet gateway, NAT device, VPN connection, or AWS Direct Connect connection. It is more secure as the network traffic between your VPC and Secrets Manager does not leave the AWS network.

profile pictureAWS
SUPPORT ENGINEER
answered 2 years ago
0

You might want to look into AWS Secrets and Configuration Provider (ASCP). This approach enables secrets from Secrets Manager and parameters from Parameter Store to be mounted as files in Amazon EKS pods. The GitHub project is here.

profile pictureAWS
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions