Skip to content

Commit

Permalink
fix: update variable in example.tf (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
themaheshyadav committed May 28, 2023
1 parent 0325d1d commit 47a60d8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions README.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,16 @@ usage: |-
resource_group_name = module.resource_group.resource_group_name
inbound_rules = [
{
name = "ssh"
priority = 101
access = "Allow"
protocol = "Tcp"
source_address_prefix = "67.23.123.234/32"
#source_address_prefixes = ["67.23.123.234/32","67.20.123.234/32"]
source_port_range = "*"
destination_address_prefix = "0.0.0.0/0"
destination_port_range = "22"
description = "ssh allowed port"
name = "ssh"
priority = 101
access = "Allow"
protocol = "Tcp"
source_address_prefix = "10.20.0.0/32"
#source_address_prefixes = ["10.20.0.0/32","10.21.0.0/32"]
source_port_range = "*"
destination_address_prefix = "0.0.0.0/0"
destination_port_range = "22"
description = "ssh allowed port"
},
{
name = "https"
Expand Down
4 changes: 2 additions & 2 deletions _example/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ module "network_security_group" {
priority = 101
access = "Allow"
protocol = "Tcp"
source_address_prefix = "67.23.123.234/32"
#source_address_prefixes = ["67.23.123.234/32","67.20.123.234/32"]
source_address_prefix = "10.20.0.0/32"
#source_address_prefixes = ["10.20.0.0/32","10.21.0.0/32"]
source_port_range = "*"
destination_address_prefix = "0.0.0.0/0"
destination_port_range = "22"
Expand Down

0 comments on commit 47a60d8

Please sign in to comment.