How to make Terraform to read AWS Credentials file?
I am trying to create an AWS S3 bucket using terraform and this is my code: provider "aws" { profile = "default" region = "ap-south-1" } resource "aws_s3_bucket" "first_tf" { bucket = "svk-pl-2909202022" acl = "private" } I have manually created the "Credentials" file using Notepad and also removed the ".txt" extension using Powershell and stored that file i