Skip to content

Commit

Permalink
chore: updated rules in readme example to resolve issue #252 (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdigangi authored Feb 25, 2021
1 parent 1d833dc commit f0bd509
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions modules/firewall-rules/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,19 @@ module "firewall_rules" {
network_name = module.vpc.network_name
rules = [{
name = "allow-ssh-ingress"
priority = null
description = null
direction = "INGRESS"
ranges = ["0.0.0.0/0"]
source = {
tags = null
service_accounts = null
}
target = {
tags = null
service_accounts = null
}
name = "allow-ssh-ingress"
description = null
direction = "INGRESS"
priority = null
ranges = ["0.0.0.0/0"]
source_tags = null
source_service_accounts = null
target_tags = null
target_service_accounts = null
allow = [{
protocol = "tcp"
ports = ["22"]
}]
ports = ["22"]
}]
deny = []
log_config = {
metadata = "INCLUDE_ALL_METADATA"
Expand Down

0 comments on commit f0bd509

Please sign in to comment.