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
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
if [ -f ./.env ]; then
export $(grep -v '^#' ./.env | xargs)
else
echo ".env file not found!"
exit 1
fi
terraform init \
-backend-config="endpoint=${AWS_ENDPOINT}" \
-backend-config="bucket=${AWS_BUCKET}" \
-backend-config="key=${AWS_BUCKET_KEY}" \
-backend-config="use_path_style=${AWS_USE_PATH_STYLE}" \
-migrate-state