Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomationD committed Nov 11, 2024
1 parent 5b420b8 commit 25a9943
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ resource "aws_instance" "this" {
associate_public_ip_address = length(var.public_subnets) > 0 ? true : false
tags = merge({
Name = "${var.env}-${var.name}"
}, local.tags)
}, var.tags)
}

module "asg_bastion" {
Expand Down
4 changes: 2 additions & 2 deletions output.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
output "security_group" {
value = aws_security_group.this[0].id
value = aws_security_group.this[0].id
description = "The ID of the security group"
}

output "tags" {
value = var.tags
value = var.tags
description = "The tags for the bastion host"
}

0 comments on commit 25a9943

Please sign in to comment.