config.tf 373 B

123456789101112131415
  1. locals {
  2. # unique id is used for terraform backend state storage. Duplicates _will_ be a problem.
  3. unique_id = REPLACE ME
  4. # Everything here should be self-explanatory
  5. profile = "default"
  6. region = "us-east-2"
  7. tags = {
  8. "tf_module" : basename(path.root)
  9. }
  10. }
  11. # Uncomment if needed
  12. #data "aws_caller_identity" "current" {}
  13. #data "aws_partition" "current" {}