Skip to content

Commit

Permalink
Performed terraform fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Kralizek committed Dec 3, 2023
1 parent cf6f2c8 commit bf57d6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ec2.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ resource "aws_launch_template" "main" {
description = "${var.name} ephemeral public ENI"
subnet_id = var.subnet_id
associate_public_ip_address = true
security_groups = concat(
security_groups = concat(
[aws_security_group.main.id],
var.additional_security_group_ids
)
Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,6 @@ variable "tags" {

variable "additional_security_group_ids" {
description = "A list of identifiers of security groups to be added to the EC2 instance"
type = list(string)
default = []
type = list(string)
default = []
}

0 comments on commit bf57d6f

Please sign in to comment.