11 lines
125 B
Makefile
11 lines
125 B
Makefile
init:
|
|
tofu init
|
|
|
|
plan:
|
|
tofu plan -out tfplan
|
|
|
|
apply:plan
|
|
tofu apply tfplan
|
|
|
|
refresh:plan
|
|
tofu apply tfplan -refresh-only
|