From d5731f0404827ab4f27727f8373796070e78902b Mon Sep 17 00:00:00 2001 From: Priyansh-Pandey <92713482+Priyansh-Pandey@users.noreply.github.com> Date: Tue, 6 Aug 2024 10:03:32 +0530 Subject: [PATCH] Update main.tf --- code/02-one-server/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/02-one-server/main.tf b/code/02-one-server/main.tf index a05b1e3..95a1d9d 100644 --- a/code/02-one-server/main.tf +++ b/code/02-one-server/main.tf @@ -8,7 +8,7 @@ resource "aws_instance" "example" { ami = "ami-785db401" instance_type = "t2.micro" - tags { + tags = { Name = "terraform-example" } }