12 lines
145 B
Makefile
12 lines
145 B
Makefile
![]() |
init:
|
||
|
terraform init
|
||
|
|
||
|
plan:
|
||
|
terraform plan -out tfplan
|
||
|
|
||
|
apply:plan
|
||
|
terraform apply tfplan
|
||
|
|
||
|
refresh:plan
|
||
|
terraform apply tfplan -refresh-only
|