79463091

Date: 2025-02-24 10:04:40
Score: 1
Natty:
Report link

Use locals

locals {
  author_tag = "Author=YourName"
}

resource "aws_instance" "example" {
  # aws config

  tags = {
    Author = local.author_tag
  }
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Komdosh