diff --git a/README-RU.md b/README-RU.md index e8bb80f0..f47b8568 100644 --- a/README-RU.md +++ b/README-RU.md @@ -3,7 +3,6 @@ [![Developed by Mad Devs](https://maddevs.io/badge-dark.svg)](https://maddevs.io/) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) - ## Преимущества этого бойлерплейта - Инфраструктура как код (IaC): используя Terraform, вы получаете налаженную и продуктивную инфраструктуру @@ -19,6 +18,8 @@ - Экономит время: вы можете потратить недели на собственные поиски и неизбежные ошибки, чтобы построить такую инфраструктуру. Или же вы можете положиться на этот бойлерплейт и поднять нужную инфраструктуру в течение дня - Свободный: мы рады делиться результатами своей работы +[![boilerplate asciicast](https://asciinema.org/a/wCS0HdC6UViWDKO7GypyIJjaB.png)](https://asciinema.org/a/wCS0HdC6UViWDKO7GypyIJjaB?autoplay=1&speed=2) + ## Описание В данном репозитории собраны наработки команды Mad Devs для быстрого развертывания Kubernetes кластера, вспомогательных сервисов и нижележащей инфраструктуры в облаке Amazon. Основным инструментом разработки и поставки является [terraform](https://www.terraform.io/) @@ -29,6 +30,10 @@ Могут возникнуть справедливые вопросы к количеству `.tf` файлов. Оно конечно просится на рефакторинг и "обмодуливание". Чем мы и займемся в ближайшее время, разбивая этот монолит на микромодули и вводя `terragrunt`, попутно решая озвученные проблемы выше. +Более подробно о нашем бойлерплейте смотрите в видео: + +[![boilerplate youtube video](https://img.youtube.com/vi/loqSDGgtmKg/0.jpg)](https://youtu.be/loqSDGgtmKg) + ## Оглавление - [Архитектурная схема](#архитектурная-схема) diff --git a/README.md b/README.md index 9a02a639..00a1b4cb 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,8 @@ - **Saves time**: you can spend weeks doing your own research and making the unavoidable mistakes to build an infrastructure like this. Instead, you can rely on this boilerplate and create the infrastructure you need within a day - **It’s free**: we’re happy to share the results of our work +[![boilerplate asciicast](https://asciinema.org/a/wCS0HdC6UViWDKO7GypyIJjaB.png)](https://asciinema.org/a/wCS0HdC6UViWDKO7GypyIJjaB?autoplay=1&speed=2) + ## Description This repository contains the know-how of the Mad Devs team for the rapid deployment of a Kubernetes cluster, supporting services, and the underlying infrastructure in the Amazon cloud. The main development and delivery tool is [terraform](https://www.terraform.io/) diff --git a/terraform/layer1-aws/outputs.tf b/terraform/layer1-aws/outputs.tf index ddd8d0cd..a5bddbfb 100644 --- a/terraform/layer1-aws/outputs.tf +++ b/terraform/layer1-aws/outputs.tf @@ -92,6 +92,7 @@ output "eks_cluster_security_group_id" { output "eks_kubectl_config" { description = "kubectl config as generated by the module." value = module.eks.kubeconfig + sensitive = true } output "eks_kubectl_console_config" {