Skip to content

Commit

Permalink
Fixed computed example in README (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiendelpierre authored and antonbabenko committed May 27, 2019
1 parent 687465a commit 7edf2cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -112,15 +112,15 @@ module "db_computed_sg" {
ingress_cidr_blocks = ["10.10.0.0/16", "${data.aws_security_group.default.id}"]
computed_ingress_cidr_blocks = ["${module.vpc.vpc_id}"]
computed_ingress_cidr_blocks = ["${module.vpc.vpc_cidr_block}"]
number_of_computed_ingress_cidr_blocks = 1
}
module "db_computed_merged_sg" {
# omitted for brevity
computed_ingress_cidr_blocks = ["10.10.0.0/16", "${data.aws_security_group.default.id}", "${module.vpc.vpc_id}"]
number_of_computed_ingress_cidr_blocks = 3
computed_ingress_cidr_blocks = ["10.10.0.0/16", "${module.vpc.vpc_cidr_block}"]
number_of_computed_ingress_cidr_blocks = 2
}
```

Expand Down

0 comments on commit 7edf2cb

Please sign in to comment.