-
Notifications
You must be signed in to change notification settings - Fork 211
/
Makefile
95 lines (75 loc) · 2.77 KB
/
Makefile
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
84
85
86
87
88
89
90
91
92
93
94
PROJECT_NAME := "terraform-oci-oke"
SHELL = /usr/bin/env bash -o pipefail
.SHELLFLAGS = -ec
.PHONY: all
all: build
##@ General
.PHONY: help
help: ## Display this help.
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_0-9-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
.terraform:
terraform init
##@ Usage
.PHONY: plan
plan: .terraform ## Run terraform plan
terraform plan
.PHONY: apply
apply: .terraform ## Run terraform apply
terraform apply
.PHONY: ssh
ssh: ## Print SSH command
terraform output -json | jq -rcM '.output.value.ssh_to_operator'
.PHONY: clean
clean: ## Clear Terraform module cache
rm -rf ./.terraform
##@ Hygiene
.PHONY: fmt
fmt: ## Run terraform fmt
terraform fmt -recursive .
.PHONY: validate
validate: ## Run terraform validate
terraform validate
.PHONY: tflint
tflint: ## Run tflint
tflint --recursive .
##@ Documentation
.PHONY: terraform-docs
terraform-docs:
@command -v terraform-docs || go install github.com/terraform-docs/[email protected]
.PHONY: tfdocs.%
%.tfdocs:
@echo "Generating terraform-docs for $(*)"
@export HEADER="$(shell echo $* | tr a-z A-Z)" && \
export TEMPLATE="<!-- BEGIN_TF_$${HEADER} -->\n{{ .Content }}\n\n<!-- END_TF_$${HEADER} -->" && \
terraform-docs markdown table \
--output-template "$${TEMPLATE}" \
--output-file "../../docs/src/inputs_submodule.md" \
-c docs/tfdocs-inputs.yml modules/$* && \
export TEMPLATE="<!-- BEGIN_TF_$${HEADER} -->\n{{ .Content }}\n\n<!-- END_TF_$${HEADER} -->" && \
terraform-docs markdown table \
--output-template "$${TEMPLATE}" \
--output-file "../../docs/src/outputs.md" \
-c docs/tfdocs-outputs.yml modules/$* && \
export TEMPLATE="<!-- BEGIN_TF_$${HEADER} -->\n{{ .Content }}\n\n<!-- END_TF_$${HEADER} -->" && \
terraform-docs markdown table \
--output-template "$${TEMPLATE}" \
--output-file "../../docs/src/resources.md" \
-c docs/tfdocs-resources.yml modules/$*
.PHONY: tfdocs
tfdocs: terraform-docs iam.tfdocs network.tfdocs bastion.tfdocs cluster.tfdocs workers.tfdocs operator.tfdocs ## Generate Terraform documentation
@terraform-docs markdown table \
--hide inputs,outputs,resources \
--output-file "docs/src/dependencies.md" .
@terraform-docs markdown table \
-c docs/tfdocs-inputs.yml \
--output-file "./docs/src/inputs_root.md" .
.PHONY: mdbook
mdbook:
cargo install --locked --force [email protected] [email protected] [email protected] [email protected] [email protected] && \
cd docs && mdbook-admonish install --css-dir src/css
.PHONY: mdbuild
mdbuild: mdbook tfdocs ## Generate documention
mdbook build docs
.PHONY: mdserve
mdserve: mdbook tfdocs ## Generate documentation and start a local web server
mdbook serve docs