[Solved] error configuring S3 Backend: no valid credential sources for S3 Backend found

Ok I managed to fix this issue. You have to remove profile from provider and other .tf files files. So my main.tf file is – provider “aws” { region = “${var.region}” } terraform { required_providers { aws = { source = “hashicorp/aws” version = “~> 4.30” } } backend “s3” { } } And backend.dev.conf … Read more