1234567891011121314151617181920 |
- locals {
- # unique id is used for terraform backend state storage. Duplicates _will_ be a problem.
- unique_id = "monkeybox_emr_lab_jupyter"
- # an ssh key pair that must already exist in EC2
- key_pair = "Fred-IO"
- # Everything here should be self-explanatory
- profile = "default"
- region = "us-east-2"
- tags = {
- "tf_module" : basename(abspath(".")),
- "project" : "monkeybox_emr_lab",
- "for-use-with-amazon-emr-managed-policies" : true,
- }
- }
- # Uncomment if needed
- #data "aws_caller_identity" "current" {}
- #data "aws_partition" "current" {}
|