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