config.tf 256 B

123456789101112
  1. locals {
  2. # Everything here should be self-explanatory
  3. profile = "default"
  4. region = "us-east-2"
  5. tags = {
  6. "tf_module" : basename(path.root)
  7. }
  8. }
  9. # Uncomment if needed
  10. #data "aws_caller_identity" "current" {}
  11. #data "aws_partition" "current" {}