- locals {
- # unique id is used for terraform backend state storage. Duplicates _will_ be a problem.
- unique_id = REPLACE ME
- # Everything here should be self-explanatory
- profile = "default"
- region = "us-east-2"
- tags = {
- "tf_module" : basename(path.root)
- }
- }
- # Uncomment if needed
- #data "aws_caller_identity" "current" {}
- #data "aws_partition" "current" {}
|