Skip to content

Instantly share code, notes, and snippets.

@sergsoares
Created April 11, 2023 00:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sergsoares/5ec7923b3a2db60ca00789cb9549e1ac to your computer and use it in GitHub Desktop.
Save sergsoares/5ec7923b3a2db60ca00789cb9549e1ac to your computer and use it in GitHub Desktop.
Makefile for select specific resource inside a main.tf
target:
SELECTED=`cat main.tf | grep resource | tr -d '"' | awk '{ print $$2 "." $$3 }' | fzf` ; \
terraform apply -target=$$SELECTED
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment