provider.tf 315 B

12345678910111213
  1. # Configure the AWS Provider
  2. provider "aws" {
  3. region = local.region
  4. profile = local.profile
  5. # I'm hoping this might be useful for adding a 'last_applied_by' tag
  6. #ignore_tags {
  7. # # specific tag
  8. # keys = ["ChangedAt"]
  9. # # or by prefix to ignore ChangedBy too
  10. # key_prefixes = ["Changed"]
  11. #}
  12. }