Skip to content

Commit

Permalink
Fix: Issue with terraform ec2-module
Browse files Browse the repository at this point in the history
ec2-module was unable to create instances other than T2.
Issue: terraform-aws-modules/terraform-aws-ec2-instance#35
  • Loading branch information
suizman committed Jun 11, 2018
1 parent beddfee commit efb1775
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/cloud/aws/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ output "instance_public_dns" {
}

output "credit_specification" {
description = "Credit specification of EC2 instance"
value = "${module.ec2.credit_specification[0]}"
}
description = "Credit specification of EC2 instance (empty list for not t2 instance types)"
value = "${module.ec2.credit_specification}"
}

0 comments on commit efb1775

Please sign in to comment.