Skip to content

Commit

Permalink
Update output var names
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmccarthydev committed Jan 5, 2024
1 parent b699326 commit 30a0ede
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions terraform-aws-nat-instance/output.tf
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
output "aws_security_group" {
output "security_group" {
value = aws_security_group.this
description = "Security group of NAT instance"
}

output "aws_network_interface" {
output "network_interface" {
value = aws_network_interface.this
description = "Network interface of NAT instance"
}

output "aws_launch_template" {
output "launch_template" {
value = aws_launch_template.this
description = "Launch template of NAT instance"
}

output "aws_autoscaling_group" {
output "autoscaling_group" {
value = aws_autoscaling_group.this
description = "Autoscaling group of NAT instance"
}

0 comments on commit 30a0ede

Please sign in to comment.