Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 2.7 KB

README-en.md

File metadata and controls

45 lines (30 loc) · 2.7 KB

Encrypting secrets with KMS when transferring the keys to the COI VM container Yandex.Cloud: Terraform

Problems

After deploying containers using Container Optimized Image (COI), sometimes you might need to transfer private information inside the container using ENV. In the UI console, in this case, in the VM properties, the transmitted ENV will be visible as plain text. There is a risk of compromising private information.

Example of an unsafe configuration:

Unsafe configuration

Example of secure transfer of private information to a COI container:

Yandex Cloud KMS supports the option to encrypt secrets in Terraform. We suggest using this function to transfer encrypted secrets to a container in the ENV format before they are decrypted inside a Python application. Decryption of secrets from the Python code will be performed using a service account linked to the COI VM with the KMS Decrypter role. The token of the service account will be obtained using the meta-date service.

The Terraform example performs:

  • Testing of infrastructure deployment: networks, subnets.
  • Creation of a test service account and its static keys.
  • Deploying a COI with a container based on a simple Python application.
  • Creating a KMS key and encrypting private data: in this case, encryption of static keys of the service account. Private data is transmitted to the container in an encrypted form.

A simple Python application inside the code decrypts private data and prints data to the log.

Important:

This solution does not eliminate the need to apply the best practices of protecting the Terraform configuration. Yandex Cloud Object Storage can act as a Terraform Remote State and perform blocking functions using Yandex Database: https://github.com/yandex-cloud/examples/tree/master/terraform-ydb-state

Preparation and prerequisites

  • Install and configure YC CLI.
  • Install Terraform.
  • Fill out the variables.tf file with your own data.
  • Launch Terraform.

Deployment results

In the UI console, we see secrets only in an encrypted form:

Safe configuration

In the container logs, we see decrypted secrets:

Safe configuration