You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Convert CSV to TFVARS. This script parses a given CSV file containing camera information and generates a Terraform variables file (.tfvars) with the data structured for Terraform usage.
print(f"Error: The file '{file_path}' does not exist.")
11
+
sys.exit(1)
12
+
13
+
defget_args(interactive):
14
+
parser=argparse.ArgumentParser(description="""
15
+
Convert CSV to TFVARS. This script parses a given CSV file containing camera information and generates a Terraform variables file (.tfvars) with the data structured for Terraform usage.
0 commit comments