This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
terraform_version := "1.6.6" | |
current_env := "dev" | |
var_file_name := "./configuration." + current_env + ".tfvars" | |
backend_file_name := "backend." + current_env + ".tfvars" | |
terraform_loglevel := "ERROR" | |
terraform_code_folder := "terraform" | |
# runs terraform init & fmt & validate & tflint (add -reconfigure or -upgrade as params) | |
tf-check *params: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sys import argv | |
from enum import Enum | |
import bpy | |
import bmesh | |
import glob | |
from pathlib import Path | |
from subprocess import call | |
""" |