## Backend Section ##

terraform {
  required_providers {
    aws = {
      source  = "hashicorp/aws"
      version = "~> 5.1.0"
    }
  }
  backend "s3" {
    bucket  = "prod-aoma-gmp-terraform-state"
    key     = "prod/iam/core/terraform.tfstate"
    region  = "us-east-1"
    encrypt = "true"
  }
}

