Skip to content

Commit ae8236d

Browse files
authored
terraform - add hcl parser (cloud-custodian#5914)
1 parent 7b637a6 commit ae8236d

File tree

26 files changed

+1536
-2
lines changed

26 files changed

+1536
-2
lines changed

.codecov.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ coverage:
2626
k8s:
2727
paths: "tools/c7n_kube"
2828
threshold: "1%"
29+
tf:
30+
paths: "tools/c7n_terraform"
31+
threshold: "1%"
2932
# aws is weaved throughout core atm can't easily call it out separately
3033
custodian:
3134
# one of the tests is slightly variable coverage due to concurrency (0.01)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SELF_MAKE := $(lastword $(MAKEFILE_LIST))
22
PKG_REPO = testpypi
3-
PKG_SET = tools/c7n_gcp tools/c7n_azure tools/c7n_kube tools/c7n_openstack tools/c7n_mailer tools/c7n_logexporter tools/c7n_policystream tools/c7n_trailcreator tools/c7n_org tools/c7n_sphinxext
3+
PKG_SET = tools/c7n_gcp tools/c7n_azure tools/c7n_kube tools/c7n_openstack tools/c7n_mailer tools/c7n_logexporter tools/c7n_policystream tools/c7n_trailcreator tools/c7n_org tools/c7n_sphinxext tools/c7n_terraform
44

55
install:
66
python3 -m venv .

requirements-dev.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
-r tools/c7n_openstack/requirements.txt
99
-r tools/c7n_mailer/requirements.txt
1010
-r tools/c7n_org/requirements.txt
11+
-r tools/c7n_terraform/requirements.txt
1112

1213
# Setup source directories as editable/development distributions
1314
-e .

tools/c7n_terraform/c7n_terraform/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)