Skip to content

Commit

Permalink
Fix quote typo breaking syntax coloration in README (#19)
Browse files Browse the repository at this point in the history
Syntax coloration started looking funny at some point, which I traced down to this little change.
  • Loading branch information
MichaelPereira authored and osterman committed May 14, 2018
1 parent c763189 commit 434fe7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ resource "aws_security_group" "eg_prod_bastion_abc" {
resource "aws_instance" "eg_prod_bastion_abc" {
instance_type = "t1.micro"
tags = "${module.eg_prod_bastion_abc_label.tags}"
vpc_security_group_ids = ["${aws_security_group.eg_prod_bastion_abc.id"}]
  vpc_security_group_ids = ["${aws_security_group.eg_prod_bastion_abc.id}"]
}
module "eg_prod_bastion_xyz_label" {
Expand Down

0 comments on commit 434fe7e

Please sign in to comment.