Cdk.tf.json change in required_providers syntax causes warning

Hi -

When I run terraform apply after running cdktf synth I am getting this warning:

Warning: Provider source not supported in Terraform v0.12

I traced this to a change in the cdkt.f.json file

new:

  "terraform": {
    "required_providers": {
      "aws": {
        "version": "~> 2.0",
        "source": "aws"
      }
    }
  },

old:

  "terraform": {
    "required_providers": {
      "aws": "~> 2.0"
    }
  }

Did I miss something when upgrading to 0.14?

Thanks,
Jennifer

This was changed to accommodate the changes around providers in Terraform 0.13. The warning can be safely ignored without any impact on applying / destroying.

Is this warning breaking your workflow somehow? (e.g. some Terraform validation)

I just assumed it was an issue. Glad to know I can use the cdk.tf.json file as is.