config.tf 430 B

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