-
-
Notifications
You must be signed in to change notification settings - Fork 562
/
Copy pathterraform_docs_replace.py
83 lines (74 loc) · 2.46 KB
/
terraform_docs_replace.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import os
import subprocess
import warnings
from argparse import ArgumentParser
from argparse import Namespace
from typing import Final
from ._structs import ReturnCode
from ._types import ReturnCodeType
CLI_SUBCOMMAND_NAME: Final[str] = 'replace-docs'
def populate_argument_parser(subcommand_parser: ArgumentParser) -> None:
subcommand_parser.description = (
'Run terraform-docs on a set of files. Follows the standard '
'convention of pulling the documentation from main.tf in order to '
'replace the entire README.md file each time.'
)
subcommand_parser.add_argument(
'--dest',
dest='dest',
default='README.md',
)
subcommand_parser.add_argument(
'--sort-inputs-by-required',
dest='sort',
action='store_true',
help='[deprecated] use --sort-by-required instead',
)
subcommand_parser.add_argument(
'--sort-by-required',
dest='sort',
action='store_true',
)
subcommand_parser.add_argument(
'--with-aggregate-type-defaults',
dest='aggregate',
action='store_true',
help='[deprecated]',
)
subcommand_parser.add_argument(
'filenames',
nargs='*',
help='Filenames to check.',
)
def invoke_cli_app(parsed_cli_args: Namespace) -> ReturnCodeType:
warnings.warn(
'`terraform_docs_replace` hook is DEPRECATED.'
'For migration instructions see '
'https://github.com/antonbabenko/pre-commit-terraform/issues/248'
'#issuecomment-1290829226',
category=UserWarning,
)
dirs = []
for filename in parsed_cli_args.filenames:
if os.path.realpath(filename) not in dirs and (
filename.endswith('.tf') or filename.endswith('.tfvars')
):
dirs.append(os.path.dirname(filename))
retval = ReturnCode.OK
for dir in dirs:
try:
procArgs = []
procArgs.append('terraform-docs')
if parsed_cli_args.sort:
procArgs.append('--sort-by-required')
procArgs.append('md')
procArgs.append('./{dir}'.format(dir=dir))
procArgs.append('>')
procArgs.append(
'./{dir}/{dest}'.format(dir=dir, dest=parsed_cli_args.dest),
)
subprocess.check_call(' '.join(procArgs), shell=True)
except subprocess.CalledProcessError as e:
print(e)
retval = ReturnCode.ERROR
return retval