Error: error configuring Terraform AWS Provider: failed to get shared config profile, default

I confirm. Removing the profile line makes it work:

provider "aws" {
  profile    = "default" <- to remove
  access_key = "xxx"
  secret_key = "yyy"
  region     = "zzz"
}
3 Likes