True or False? Applying the following Terraform configuration will fail since no source or version specific for 'aws' provider
terraform {
required_providers {
aws = {}
}
}
Answer
False. It will look for "aws" provider in the public Terraform registry and will take the latest version.