config.tf 400 B

12345678910111213
  1. locals {
  2. profile = "default"
  3. region = "us-east-2"
  4. prefix = "terraform-remote-state" # Prefix for resources. Select resource types may truncate this.
  5. tags = {
  6. "tf_module" : basename(path.root)
  7. }
  8. dynamodb_support = false # whether to support locking (recommended for group projects)
  9. }
  10. # Uncomment if needed
  11. #data "aws_caller_identity" "current" {}
  12. #data "aws_partition" "current" {}