mirror of
https://github.com/idanoo/fediservices.nz-infra
synced 2025-07-01 22:02:15 +00:00
Format again
This commit is contained in:
parent
862470a8f7
commit
0ae9705e90
1 changed files with 2 additions and 3 deletions
5
ec2.tf
5
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue