Copy
terraform {
backend "s3" {
bucket = ""
key = "terraform.tfstate"
region = "ap-south-1"
}
required_providers {
aws = {
source = "hashicorp/aws"
version = "6.26.0"
}
}
}
provider "aws" {
region = "ap-south-1"
}
