Automation and setup for sites I own.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- TF:=terraform
- SSH:=ssh
- USER_SSH_OPTS:=
- SSH_OPTS:=-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no $(USER_SSH_OPTS)
-
- .PHONY: all
- all: up
-
- .PHONY: rebuild
- rebuild: down up
-
- .PHONY: up
- up:
- $(TF) apply -auto-approve
-
- .PHONY: down
- down:
- $(TF) destroy -auto-approve
-
- .PHONY: ssh
- ssh:
- $(SSH) $(SSH_OPTS) root@`$(TF) output ipv4`
|