Below script in terraform to store the state file in s3 bucket. terraform { backend "s3" { bucket = "tstate09"...
Below script in terraform to store the state file in s3 bucket.
terraform {
  backend "s3"{
    bucket ="tstate09"
    key = "key/terraform.tfstate"
    region="us-east-1"
  }
}
 
 
 
 
COMMENTS