Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed May 10, 2021
1 parent cc714e9 commit fa9f1e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions nacl-rules/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ module "nacls_enterprise" {
network_acl_id = module.nacls.private_network_acl
rule_description = "Enterprise plus VPC"
rule_definitions = {}
rule_definitions = { }
named_cidr_blocks = [ "enterprise", "vpc", "other" ]
merge_cidr_blocks = {
"vpc" = var.vpc_cidr_block
"vpc" = var.vpc_cidr_block
"other" = []
}
rules = [ "all_inbound", "all_outbound" ]
rule_number = 1000
rule_increment = 10
tags = {} =
tags = {}
}
```

Expand Down
6 changes: 3 additions & 3 deletions nacl-rules/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
* network_acl_id = module.nacls.private_network_acl
*
* rule_description = "Enterprise plus VPC"
* rule_definitions = {}
* rule_definitions = { }
* named_cidr_blocks = [ "enterprise", "vpc", "other" ]
* merge_cidr_blocks = {
* "vpc" = var.vpc_cidr_block
* "vpc" = var.vpc_cidr_block
* "other" = []
* }
* rules = [ "all_inbound", "all_outbound" ]
* rule_number = 1000
* rule_increment = 10
*
* tags = {} =
* tags = {}
* }
* ```
*/
Expand Down

0 comments on commit fa9f1e4

Please sign in to comment.