Skip to content
This repository has been archived by the owner on Dec 12, 2022. It is now read-only.

Commit

Permalink
use a list for sg
Browse files Browse the repository at this point in the history
  • Loading branch information
SamClinckspoor committed Feb 20, 2018
1 parent cd59ee8 commit a3c5292
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion efs/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resource "aws_efs_mount_target" "efs" {
file_system_id = "${aws_efs_file_system.efs.id}"
count = "${var.subnet_amount}"
subnet_id = "${element(var.subnets, count.index)}"
security_groups = "${var.security_groups}"
security_groups = ["${var.security_groups}"]
}

data "template_file" "efs" {
Expand Down

0 comments on commit a3c5292

Please sign in to comment.