Compare strings with `==`.
VAR="d"
awk -v var="$VAR" '$1==var' file
Output:
d e f
* * *
From `man awk`:
> `-v var=val`: Assign the value val to the variable var, before execution of the program begins. Such variable values are available to the BEGIN rule of an AWK program.