Please see [the release notes](https://discuss.hashicorp.com/t/terraform-0-12-14-released/3898). > […] quoted references like `"aws_instance.foo"` should be rewritten without the quotes, e.g. as `aws_instance.foo`. Old syntax- region = `"${var.region}" # you will get Interpolation-only warning` New Synatx- region = `var.region # no warning` Files suffering from this deprecation: * [`main.tf`](https://github.com/rivethealth/bitbucket-webhook-aws-terraform/blob/f1df0f775feb4a54884953919fd3ceecfd3940a9/main.tf) * [`outputs.tf`](https://github.com/rivethealth/bitbucket-webhook-aws-terraform/blob/f1df0f775feb4a54884953919fd3ceecfd3940a9/outputs.tf)