updated readme with information about tf proxy

This commit is contained in:
2023-06-14 15:58:19 +03:00
parent abc4e8106b
commit 3858c233f7

View File

@@ -55,3 +55,21 @@
sudo apt-get install apt-transport-https
echo "deb https://mirror.venya.tech/mirrors/artifacts.elastic.co/deb/8.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-8.x.list
## Terraform
### Документация
https://terraform-registry.venya.tech/
### Файлы
https://terraform-releases.venya.tech/
### Пример подключения в своём терраформе
В файле `main.tf` указываем ссылку на нужный провайдер
terraform {
required_providers {
aws = {
source = "terraform-registry.venya.tech/hashicorp/aws"
}
}
}