chore: restructured project

This commit is contained in:
ITQ
2025-10-31 15:20:30 +03:00
parent 804444ab74
commit 0dc6551e7c
37 changed files with 28 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
# Terraform
## Prerequisites
Ensure you have the following installed on your system:
- [Terraform](https://developer.hashicorp.com/terraform) (latest version recommended)
## Main (`./main`)
Main Terraform module for infrastructure
## Service (`./service`)
Terraform module to create service account for [Main](#main-main) terraform module.
## CheatSheet
```bash
# Init Terraform module
../scripts/init
# Set required variables for terraform from dotenv file
export $(grep -v '^#' ./.env | xargs)
# Unset required variables for terraform from dotenv file
unset $(grep -v '^#' ./.env | sed 's/=.*//' | xargs)
```