init:
	terraform init

plan:
	terraform plan -out tfplan

apply:plan
	terraform apply tfplan

refresh:plan
	terraform apply tfplan -refresh-only