From d07abccbcecda68db6e0e6b3ff108f50cef0a197 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Sun, 5 May 2024 22:53:07 -0400 Subject: [PATCH] fix: no default tags exist --- hosts/arrow/aws/ec2.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/arrow/aws/ec2.tf b/hosts/arrow/aws/ec2.tf index 4d3fe9b..43f3c9c 100644 --- a/hosts/arrow/aws/ec2.tf +++ b/hosts/arrow/aws/ec2.tf @@ -3,9 +3,9 @@ resource "aws_instance" "instance" { instance_type = var.ec2_size vpc_security_group_ids = [aws_security_group.instance.id] - tags = merge(local.default_tags, { + tags = { Name = "aws-nixos" - }) + } lifecycle { create_before_destroy = true