Skip to content

Commit

Permalink
Fix example code (cloudposse#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
SevereOverfl0w authored and aknysh committed Aug 10, 2018
1 parent 73cc43d commit 3465ab9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,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
4 changes: 2 additions & 2 deletions README.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ usage: |-
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 Expand Up @@ -169,4 +169,4 @@ contributors:
- name: "Andriy Knysh"
github: "aknysh"
- name: "Jamie Nelson"
github: "Jamie-BitFlight"
github: "Jamie-BitFlight"

0 comments on commit 3465ab9

Please sign in to comment.