From 0ae9705e90d6570cf341869c58fc45def8dc508b Mon Sep 17 00:00:00 2001 From: Daniel Mason Date: Sat, 22 Apr 2023 13:23:04 +1200 Subject: [PATCH] Format again --- ec2.tf | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ec2.tf b/ec2.tf index a50dce5..5a6770e 100644 --- a/ec2.tf +++ b/ec2.tf @@ -10,14 +10,13 @@ resource "aws_instance" "instance" { key_name = var.ssh_key vpc_security_group_ids = [aws_security_group.sg.id] - tags = {Name = "status.fediservices.nz"} + tags = { Name = "status.fediservices.nz" } lifecycle { ignore_changes = [ tags, ] } - } # Elastic IP @@ -25,7 +24,7 @@ resource "aws_eip" "eip" { instance = aws_instance.instance.id vpc = true - tags {Name = "status.fediservices.nz"} + tags { Name = "status.fediservices.nz" } } # EBS Vol for persistance