Terraform

True or False? Applying the following Terraform configuration will fail since no source or version specific for 'aws' provider

terraform {
    required_providers {
      aws = {}
    }
  }

Difficulty: unrated

Source: bregman-arie/devops-exercises by Arie Bregman

Answer

False. It will look for "aws" provider in the public Terraform registry and will take the latest version.