config.tf 561 B

1234567891011121314151617181920
  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. # an ssh key pair that must already exist in EC2
  5. key_pair = "Fred-IO"
  6. # Everything here should be self-explanatory
  7. profile = "default"
  8. region = "us-east-2"
  9. tags = {
  10. "tf_module" : basename(abspath(".")),
  11. "project" : "monkeybox_emr_lab",
  12. "for-use-with-amazon-emr-managed-policies" : true,
  13. }
  14. }
  15. # Uncomment if needed
  16. #data "aws_caller_identity" "current" {}
  17. #data "aws_partition" "current" {}