Use locals
locals { author_tag = "Author=YourName" } resource "aws_instance" "example" { # aws config tags = { Author = local.author_tag } }